mysql – Magento Mass使用MAGMI导入图像 – 不包括图像

谢谢阅读.

我正在使用magmi来导入超过30,000种带图像的产品.

问题在于图像是否已导入,但所有图像都被排除在外.

有没有我可以使用的SQL查询并包含所有图像?

我使用了这个查询但只影响了一行

update `catalog_product_entity_media_gallery_value` set disabled=1 where `value_id` in (select `value_id` from `catalog_product_entity_media_gallery` where value in (select value from `catalog_product_entity_varchar` where `attribute_id`=(select `attribute_id` from `eav_attribute` where attribute_code='image' and `entity_type_id`=4)));

你能帮我么?谢谢.

magento 1.8 CE

最佳答案
plugin documentation所述,只需在图像名称加上“”符号即可导入.

检查“排除”的原因是基本图像的认magento行为是为了避免在“额外”图像库中复制它们.

但是,某些扩展需要在额外图像列表中显示基本图像.

顺便说一句,我还建议使用latest git version of magmi,这是更新,并有几个增强功能

相关文章

优化MySQL数据库发布系统存储的方法有:1.mysql库主从读写分...
使用mysql的方法:在“我的电脑”→右键→“管理”→“服务”...
在mysql中查看root用户权限的方法:1.命令行启动mysql服务;...
MySQL主从复制是用来备份一个与主数据库一样环境的从数据库,...
运行mysql的方法1.启动mysql服务,在“我的电脑”→右键→“...
开启mysql的方法1.可以通过快捷键win+r,输入cmd,打开窗口,...