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
本文提供了一种方法来优化Joomla网站性能,通过调整PHP配置中的max_input_vars、suhosin.post.max_vars和suhosin.request.max_vars变量,确保网站在处理大量输入数据时不会出现内部服务器错误。

被折叠的 条评论
为什么被折叠?



