2016-07-28 61 views
0

我已经将一些图像上传到后端的一个Magento产品,但是这些图像并未显示在前端。Magento中的产品图像未显示在前端

我分析MySQL表:

select * from catalog_product_entity where entity_id=10; 
select * from catalog_product_entity_media_gallery where entity_id = 10; 
select * from catalog_product_entity_media_gallery_value where value_id in (46,47,48); 

我猜所显示的图像是在这里:

select thumbnail, small_image, small_image_label, thumbnail_label 
from catalog_product_flat_1 
where entity_id = 10; 

但选择其他图像时,并保存在后端的变化,在值此表不改变...

我的缓存已禁用,我的权限在/ media文件夹中可以...不明白为什么图像不显示...

+1

确保图像未在商店级别保存。另外尝试重新索引平面数据。 –

+0

是的,那是我的问题!谢谢! – nano

+0

@gulshanmaurya你可以发布你的答案,以便用户nano会接受它 – fresher

回答

1

确保图像未在商店级别保存。 切换到存储视图并查看图像是否在商店级别保存。通过选中“使用默认值”复选框并保存产品来删除商店级别值。

相关问题