Reputation: 523
I am trying to upload image from admin panel but could not upload images only in product tab. But I can upload image for category tab perfectly. My error message is:
I have also checked /public_html/lib/Varien/File/Uploader.php
, line 219:
chmod($destinationFile, 0666);
and line 541:
if (!(@is_dir($destinationFolder) || @mkdir($destinationFolder, 0777, true)))
both looks OK.
Also checked permission of /public_html/media/catalog/product
folder and it is also set as 777.
Upvotes: 0
Views: 845
Reputation: 2136
After SUPEE-8788 update, magento introduce image dimensions in the configuration. I'm not sure your previous version is what. The error came from Mage_Catalog_Helper_Image
.
So, my recommendation is Go and Check your dimensions setting under
System->Configuration->Catalog->Product Image.
Hope this help. Btw, default dimensions size is 5000px
Upvotes: 2