new limit within php: 1000 fields per POST. Does someone know, if the number can be influenced?

max_input_vars

is an attempt for PHP to solve some security issues and when set, it limits your number of inputs (thus, fields in your forms). Also beware of

max_input_nesting_level

And yes – they are configurable. Just edit your php.ini or htaccess values.

Leave a Comment