PHP/DB requirements
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