Hi all.. i am importing images in magento 1.5.1.. the images is imported but not showing when i edit the product.
But when i edit product the image is not showing there
Please help me in solving this issue. i am using magento 1.5.1.
Hello - See Reply below
There are many things that can cause this issue, but here are some things to be noted:
- On the product information page in your admin backend, under 'Images', make sure they are not 'Excluded'
- Make sure the product images exist under /media/catalog/product/ (relative to your document root)
- Magento also needs to be able to write to this directory, so you can run this command to set those permissions:
chmod -R 775 /path/to/magento/media
- This can be caused by wrong permissions set to uploaded files. Open lib/Varien/File/Uploader.php and make sure following permission are set:
Around line 219:
chmod($destinationFile, 0666);
Around line 541:
if (!(@is_dir($destinationFolder) || @mkdir($destinationFolder, 0777, true))) {
Note: This issue can also be fixed by applying patch SUPEE-7405 v1.1.
If Issue Solved, Click Kudos/Accept As solutions.
Thanks