I have recently moved my client site arabianglitz.com to a new hosting and using magento 1.9.2.4 in it.
For cache using a full page cache and maxcdn as well. As the site was moved to a new hosting full page cache ask me to setup a cron job which I did via cpanel.
Now my client site main home page banners and all product images are gone...
Help needed.
Hello TMDesignz,
The following are the reasons that might cause the issue to occur. You can try the following methods to fix the "Main banner and product images not showing on magento frontend":
Wrong Permissions to Media Folder:
chmod -R 777 media/
Theme-Related Issue:
Media Folder Owned by Another User:
It can occur if you transfer your Magento store from one server to another. You can fix the issue by changing the ownership of the media folder.
chown -R {username}:{username} media/
Low PHP Memory Limit:
Due to the low php memory limit, Magento 2 cannot resize your images and will not display images on the user end. Thus, Increasing the PHP memory limit can fix the issue,
php_value memory_limit 256M
If the issue persists, you can try the below steps to show the banner and product images on the frontend.
bin/magento cache:clean
I hope the above fixes help you to resolve the issue and that your Main banner and product images start showing on the frontend.
----------------------------
Regards,
Rex M