Question
Wordpress Menu Item Limit
I have my running website up and everything was going smoothly until I hit a max menu item limit. I have been scouring the web for the past week to remedy this issue without any luck so far. I have tried the following.
Edit /etc/php5/apache2/php.ini by changing maxinputvars from 1000 to 3000 or 5000. Restart apache
Create a new php.ini and put in wp-admin folder.
Change maxinputvars = 3000
uploadmaxfilesize = 70M;
postmaxsize = 128M;
uploadtmpdir = 70M;
maxinputvars = 3000;
memory_limit = 256M;
edit .httaccess by adding
<IfModule mod_php5.c>
phpvalue maxinput_vars 5000
</IfModule>
None of these have working for me. I am using the ubuntu 4 wordpress image - there must be something server-side that truely controlling the maxinputvars.
Thoughts, suggestions?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
Are you talking about the max wp-admin menu limit?
https://wordpress.org/support/topic/the-menu-has-a-limit-of-49-links-of-pages-in-the-navbar
Yes exactly, I have tried all the suggestions on that page without any luck.
Have you tried putting a php.ini file inside the root wordpress folder (outside of wp-admin, wp-content, wp-includes)?