Problems Saving Large Number of Attribute Option Labels in Magento

前端 未结 6 1158
悲哀的现实
悲哀的现实 2020-12-29 10:47

I\'m running into a problem in a Magento system where saving a large number of attributes either doesn\'t work at all, or only partially works. It appears to be a javascrip

6条回答
  •  长情又很酷
    2020-12-29 11:07

    I had exactly this problem (POST truncated) and it comes from a suhosin patch that has a too little POST limit. (or the standard PHP post_max_size)

    In your php.ini check these values and increase their values if needed (and restart apache) :

    post_max_size
    suhosin.post.max_vars
    suhosin.request.max_vars
    

    For your second probleme (JS performance issue), I can't help you

提交回复
热议问题