我有一个大型表单正在Wordpress中更新,插件吐出一个错误,说max_input_vars设置为1000.该站点位于共享主机上,技术支持已将php.ini中的max_input_vars更新为2000 ,我已经证实了这一点。
我正在尝试将以下内容添加到.htaccess中,以查看是否有助于解决问题,但收到500错误,可能是语法错误。
php_value max_input_vars 2000
我是否需要以任何特定格式包含这行代码,我错过了什么?完整的.htaccess示例如下。
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
#php_value max_input_vars 2000
目前,max_input_vars已被注释掉,因此不会导致500错误。
非常感谢任何帮助。
干杯
答案 0 :(得分:6)
这个适合我。将此部分添加到wordpress文件夹中的.htaccess文件中。就是这样。
<IfModule mod_php5.c>
php_value max_input_vars 5000
</IfModule>
答案 1 :(得分:0)
您需要在root wordpress instalation目录中使用php.ini文件。 I.E.与htaccess文件相同的位置。
我个人添加了所有这3行,但在大多数情况下,第一行将是enpugh:
max_input_vars = 3000;
suhosin.post.max_vars = 3000;
suhosin.request.max_vars = 3000;