Gaurav Jariwala
Gaurav Jariwala

Reputation: 523

Could not upload images from admin panel after updating Magento to 1.9.3

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:

enter image description here

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

Answers (1)

502_Geek
502_Geek

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.

enter image description here

Hope this help. Btw, default dimensions size is 5000px

Upvotes: 2

Related Questions