In Joomla backend, go to
-- Joomla's System Information, and then inside TAB PHP information
and check these variables, are (at least) >=4000
- max_input_vars
- suhosin.post.max_vars (if you have
suhosin patch on your server)
- suhosin.request.max_vars (if you have
suhosin patch on your server)
If not: first try changing the .htaccess, if that results in an "Internal server Server Error",
then remove/undo the new lines that you added and try using the php.ini
either add to your .htaccess :
php_value max_input_vars 4000
php_value suhosin.post.max_vars 4000
php_value suhosin.request.max_vars 4000
or to your php.ini :
max_input_vars=4000
suhosin.post.max_vars=4000
suhosin.request.max_vars=4000
NOTE: for php.ini you may have to define its location inside the .htaccess file example
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/mysite_account/public_html
</IfModule>
NOTE: PHP 5.3 or later is needed and PHP 5.4 or later is recommended