Magento – Magento 1.9.2.1 – Images in frontend and backend not showing

ce-1.9.2.1imagemagento-1.9

I've been on this issue since 1.9.2.1 was released. In 1.9.1 everything worked like a charm. When upgrading to 1.9.2.1, all images in the frontend and backend can't be loaded for some reason. Even if you put in the URL to the image, it doesn't show it.

Been looking online and playing around with new installs and finally ended up installing an shop with the standard demo content.
Because that should at least work right…?

Address: http://www.rahsite.nl/winkel/

Note: This is a fresh 1.9.2.1 install with demo content. Nothing is changed what so ever.

My hosting guys point to Magento for this issue (Also because they don't know Magento I assume…).

My question: What can I do to resolve this and where do I start?

Best Answer

Try This below Solution

Open up the following file:

lib/Varien/File/Uploader.php

Find this line :

chmod($destinationFile, 0640);

Replace it with this line:

chmod($destinationFile, 0777);

Related Topic