Muffin Builder items or Page Options can not be saved [max_input_vars]?
If you are unable to save Muffin Builder items or Page options anymore, it means the problem is max_input_vars variable on server side. By default, on many servers, the value of this variable is set to 1000. This is enough for users who do not build pages with large amount of content. But if you are planning to create larger pages, we recommend to increase this variable to 10000. This variable can be increased under .htaccess file with additonal line:
php_value max_input_vars 10000
There is also another solution you can try as it works in some cases as well. Under public_html/ folder on FTP, create .user.ini file with below content:
php_value max_input_vars 10000
There is also another solution you can try as it works in some cases as well. Under public_html/ folder on FTP, create .user.ini file with below content:
max_input_vars = 10000;However, if any of above solutions won't help, then you must contact with server administrator because it means that only admin is able to increase this variable.
Comments
Is there any way to fix that?
Thank you!
<html>
<head>
<title>PHP-Test</title>
</head>
<body>
<?php phpinfo(); ?>
</body>
</html>
but the testfile.php still shows the wrong value. so did i something wrong? do i have to restart any webservices or so?
@muffinvernichtungswaffel You need to contact with your admin then because limits are on server side and changing files won't change anything.
I have the same problem, I've changed the max_input_vars to 10000, here is the link: http://wp12169063.server-he.de/bergetappe/test.php
and I still can not add new items on a page.
Please help!
the local value which is 10000 overrides the master value which is 1000
http://stackoverflow.com/questions/19520744/what-is-the-difference-between-local-value-and-master-value
are you sure, I have to change the master value? That is not possible with .htaccess
the local value which is 10000 overrides the master value which is 1000
http://stackoverflow.com/questions/19520744/what-is-the-difference-between-local-value-and-master-value
are you sure that I have to change the master value? .htaccess does not have any influence on the master value.
I've also installed the simple system status plugin, it also shows that max input vars is 10000
-- PHP Configuration
PHP Version: 5.6.18-1~he.0
PHP Post Max Size: 32M
PHP Time Limit: 30
PHP Max Input Vars: 10000
PHP Safe Mode: No
PHP Memory Limit: 256M
PHP Upload Max Size: 32M
PHP Upload Max Filesize: 32M
PHP Arg Separator: &
PHP Allow URL File Open: No
host machine ran a newer version of PHP which contains a module called suhosin.
I had to add three lines to the end of the php.ini file and I can now save again.
[suhosin]
suhosin.post.max_vars = 10000
suhosin.request.max_vars = 10000
I have put this in htaccess and it worked
php_value max_input_vars 10000
php_value suhosin.post.max_vars 10000
php_value suhosin.request.max_vars 10000
@muffingroup
You have provided wrong information, that is not good support
You're welcome muffingroup, thanks for your product.