从后端清除Magento缓存后,几乎所有缩略图都不会显示。问题仅在于可用套件的缩略图图像以及类似产品和相关产品图像。所有类别和产品页面图像似乎都很好。
为了排除故障,我做了以下事情:
chmod -R 777 ./media
)/var/www/media/catalog/products/cache..
Magento重新创建的缓存的缓存文件夹仍然没有显示图像任何其他猜测,我需要尝试解决这个问题。它只有小缩略图,一切都很好,直到我从后端删除缓存。
答案 0 :(得分:0)
检查缩略图选项是否已分配给图像或不在管理中,
如果已分配,则交叉检查您的数据库是否具有该值
1st:获取缩略图属性id;
mysql> select * from eav_attribute where attribute_code = 'thumbnail';
第二:现在使用以下查询检查缩略图的图像路径
mysql> select * from catalog_product_entity_varchar where attribute_id = 'here_your_thum_img_attr_id' AND entity_id = 'here_product_id';