• stevengootgeld

    (@stevengootgeld)


    I’m running WordPress on my Windows 7 machine using WAMP. I cannot get more than 89 menu and submenu items, when I save the menu the items past that number disappear. I’ve searched everything on Google about this and tried almost everything by modifying the php.ini file to no avail.

    Does anyone know how to increase the menu limits?

Viewing 5 replies - 16 through 20 (of 20 total)
  • # 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

    # BEGIN wtwp_cache
    # END wtwp_cache

    # BEGIN wtwp_security
    # END wtwp_security

    this is my ht file but could not change menu items even after adding
    php_value max_input_vars 5000

    Thanks

    max_input_vars = 9000

    Work for me

    thanks a lot

    Hi Bustel.

    After two years of menu contortions to get around a limit of 89 menu items, a solution!

    php_value max_input_vars 5000

    worked for me

    Thanks very much

    Hi

    Adding php_value max_input_vars 5000 to my .htaccess isn’t working. This is my .htaccess, could someone tell me where to add it? If I add is after ‘Rewrite Engine on’ I get a server error.

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # 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
    
    RewriteEngine on

    I tried adding

    <IfModule mod_php.c>
    php_value max_input_vars = 9000
    </IfModule>

    But it doesn’t fix the max menu problem

    Thanks in advance
    m

    You could try this:

    <IfModule mod_php5.c>

    php_value max_input_vars 5000

    </IfModule>

Viewing 5 replies - 16 through 20 (of 20 total)
  • The topic ‘menu item limit’ is closed to new replies.