If you’re building or managing a WordPress site and suddenly encounter the error:
“Warning: Max Input Vars limit reached”
or
“Increase max_input_vars to a higher value.”
…it means your server is blocking PHP from processing too many input fields — often seen when saving large menus, page builders (like Elementor or WPBakery), or form submissions.
In this advanced article, we’ll cover:
max_input_vars is a PHP directive that limits how many input variables PHP can accept (via POST, GET, and REQUEST). This protects the server from hashing denial-of-service attacks, but also affects legitimate operations in CMS platforms.
Default value:
If you exceed this limit (e.g. saving a WordPress menu with 1000+ items), PHP cuts off the input, and WordPress silently fails to save all changes.
This is the cleanest way to change max_input_vars if you’re running your own server:
Step 1: Locate or create a php.ini file (depends on server):
Replace 8.1 with your PHP version.
Step 2: Find and edit the directive:
Step 3: Restart your web server:
or
If you can’t access php.ini, try editing .htaccess in the root of your WordPress installation:
⚠️ This only works if mod_php is enabled. Some hosts use PHP-FPM instead, where this method won’t work.
WordPress does not natively support overriding max_input_vars, but in some configurations, adding this might work:
Place it above the line that says:
If you’re using shared hosting with cPanel:
✅ Works instantly — no restart required.
Create or edit .user.ini in your root WordPress folder:
Then restart PHP (or wait 5+ mins if the host applies changes automatically).
NGINX doesn’t use .htaccess, so configure PHP via FPM pool or php.ini.
Edit /etc/php/8.1/fpm/php.ini:
Then restart:
Create a phpinfo.php file in your WordPress root:
Access it via browser: https://yourdomain.com/phpinfo.php
Search for max_input_vars and verify it’s updated.
🧼 Don’t forget to delete the file afterward — it exposes sensitive server info.
Recommendation | Reason |
---|---|
Don’t set max_input_vars to 999999 | Can lead to DoS vulnerabilities |
Stick to 3000–5000 | Enough for large menus/page builders |
Monitor memory limits | Large input vars = more memory usage |
Use phpinfo() or ini_get() to debug | Avoid guesswork |
Sometimes, this issue is accompanied by other limits being hit:
These can also go in php.ini, .htaccess, or .user.ini.
The max_input_vars error is easy to miss but can break critical features silently in WordPress. By increasing this limit via the right method for your environment, you ensure stability for complex menus, multilingual content, and drag-and-drop page builders.