You can also try the following:
1. Create a php.ini file in your public_html/root folder and add these variables to it and save.
php_value suhosin.post.max_vars = valuehere
php_value suhosin.request.max_vars = valuehere
2. Create a .htaccess file in your public_html/root folder and place these variables in it and save.
php_value suhosin.post.max_vars = valuehere
php_value suhosin.request.max_vars = valuehere
or
Some hosts dont allow php variables in a a htaccess file, try it this way if the other doesnt work.
suhosin.post.max_vars = valuehere
suhosin.request.max_vars = valuehere
|