문제

I intend to import categories into my magento from csv file. I use ValueRemapper of magmi. The Replaced Attribute is categories. And the New Values for categories is

{{ ValueRemapper::use_csv('C:\xampp\htdocs\magento\var\import\category_ids.csv')->map({item.categories) }}.

But when I run the import I get errors

SQLSTATE[HY093]: Invalid parameter number: no parameters were bound....

I tried to change the path to the csv file both with absolute and relative path, but it still has the same error. Could anyone give me a clue what the real problem of my setting? And any solution would be appreciated. Thank you.

도움이 되었습니까?

해결책

you seem to be missing } here:

->map({item.categories)

Try:

->map({item.categories})
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top