Quite often users can meet the following error message when translating templates:
“Attention! Your PHP configuration limits the number of fields in the form of post 1000 max_input_vars. Please ask your hosting provider to increase this limit to at least xxxx, or you will have to edit the translation files” .
As you see from the description you need to increase the parameter max_input_vars. Depending on the hosting you are using, you can use one of the below ways:
1. Add the following lines to your .htaccess file. You need to increase the number 5000 to that value which is indicated in the error message (xxxx).
1 2 |
php_value post_max_size "32M" php_value max_input_vars 5000 |
2. Change settings in the php.ini of your server, if you have permissions to edit this file.
1 2 |
max_input_vars = 5000 post_max_size = 32M |