Home › Forums › Add-ons › Options Page › Limited to 70 fields? › Reply To: Limited to 70 fields?
Silly me, of course the answer was not number of fields, but number of post vars…
72 fields just happened to push the post vars count over PHP 5’s default limit of 1000. This issue also crops up with really large menus in WP.
The fix:
Add a php.ini file to /wp-admin/ and put these settings in there (assuming your host allows php.ini overrides):
max_input_vars = 3000
suhosin.post.max_vars = 3000
suhosin.request.max_vars = 3000
From: http://anothersysadmin.wordpress.com/2012/02/16/php-5-3-max_input_vars-and-big-forms/
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.