I’ve read that the problem might be solved by adding
to the .htacccess file:
php_value max_input_vars 2000
If so, where do I put this and should it be preceded and succeeded by anything?
This is my current .htaccess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wp/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wp/index.php [L]
</IfModule>
# END WordPress
When I got no replies I decided on a cludgy fix – I made a series of pages with links. When I have a moment I will try to revert to my original plan, using your helpful suggestion and will let people know if this works.
Thank you very much for your help