Question

I have an issue with the product options. There are 500 option for the attribute but can't add after 100 options.

Can you please let me know about this issue?

The Product Attribute is successfully saved but the option value not showing.

Was it helpful?

Solution

Likely your PHP max input vars setting is to low, and it happens to cap at out 100 entries. Verify what this is set to, and raise it to something like 100,000 . Magento backend forms can contain many inputs. If you want to get a rough estimate of this value on your current attribute, try going to the admin page for it, opening up the web console, running jQuery("input").length and see the value.

OTHER TIPS

I wish I could comment rather than answer, but FWIW I have a system with well in excess of 100 options for a question, however, the more you have the more cpu/memory the back office uses up. It might be it runs out of memory or times out. Suggest you make sure the php settings file has a goodly chunk of memory e.g. in GB rather than MB. Also there are magento recommendations for php timeout wait time, again make sure this is not the standard 30 seconds. It may also be a value that has control characters in it so for a test only use alpha characters, finally it is worth checking the web server logs (apache nginx) and syslog. HTH

php_value max_input_vars 10000
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top