Problems Saving Large Number of Attribute Option Labels in Magento

前端 未结 6 1161
悲哀的现实
悲哀的现实 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 10:53

    Sorry!!

    I went through this same problem , solution follows below.

    Explanation of the problem

    problem

    A customer has a very large base of tires that also have many cars added to the same , thereby to migrate moorings between tires and vehicles only 255 characters of the attributes of ids were inserted into the table with it causing error in the migration.

    The magento inserts a string with ids separated by ,

    The problem occurred in the table "catalog_product_entity_varchar" in the value field which by default is 255 characters if I put text and resolved .

    Note : I know you modify the DB is not nice but unfortunately had to perform this operation.

    Example product

    Tire 175 / 65R14

    -> Make ( + - 200 options)
    -> Model (+ - 4mil options)
    -> Series (+ - 15mil options)
    -> Year -> ...

    att,

提交回复
热议问题