Increase the max_input_vars in php.ini
"Warning, your PHP configuration limits the maximum number of fields to post in a form: 1000 for max_input_vars.
Please ask your hosting provider to increase the this limit to 1318 at least or edit the translation file manually." when I try to alter some translations on my front Office. Is it possible to increase the max_input_vars from the 1000 default to 1500 ou 2000?
I have my PHP runs on your server as Apache module. Therefore, I add this to my .htaccess:
php_value max_input_vars 5000
php_value suhosin.post.max_vars 5000
php_value suhosin.request.max_vars 5000
Unfortunately, the error 500 appears! please show me how to add the value to the .htaccess.
Also, I tried to create php.ini and add this:
max_input_vars = 2000
suhosin.post.max_vars = 2000
suhosin.request.max_vars = 2000
It is also not working.
please show me how to add the value.