Hello,
I just upgraded my ProjeQtOr to 6.4.4 and all works fine (after some commands lines)
But i have a problem with the screen customisation, the "new" feature that allow to hide a field for some type of tickets seems to work but not for all fields ?
I hidded many fields in the 'Description' tab but when i try to hide some 'Products' fields it doesn't save my choice, even if i INSERT INTO the table named 'extrahiddenfield' by :
INSERT INTO extrahiddenfield (scope, idType, field)
VALUES
('Type#Ticket', '162', 'buildDev')
Someone can help ?
Try and remove duplicates in table extrahiddenfields
I tried this to find duplicate entries (and i checked manually because only 319 rows) and i found no duplicate entry.
SELECT
scope, COUNT(scope),
idType, COUNT(idType),
field, COUNT(field)
FROM
extrahiddenfield
GROUP BY
scope,
idType,
field
HAVING
(COUNT(scope) > 1) AND
(COUNT(idType) > 1) AND
(COUNT(field) > 1)
Hm ok i found this in httpd logs :
[Tue Jan 02 12:22:50.101826 2018] [php7:warn] [pid 2497] [client XXXXXXXX] PHP Warning: Unknown: Input variables exceeded 1000. To increase the limit change max_input_vars in php.ini. in Unknown on line 0, referer: http://XXXXXXXXXX/view/main.php
so i changed the max_input_vars value, but it was unavailable so i don't understand why he takes 1000 as the limit ?
Btw it works now
so i changed the max_input_vars value, but it was unavailable so i don't understand why he takes 1000 as the limit ?
1000 is default value for max_input_vars in PHP.
It is a screen where impact of max_input_vars was not identified yet.
Of course, it will depend on number of items in list (for instance number of types) and complexity of screen.
Moreover, If prerequisites is respected (max_input_vars=4000) it may not happen
Yes i configured php.ini to 4000 instead of "nothing" and it's ok.
Sorry for this useless post.
Bye
Loïc