Tag Archives: linux
I had been scratching my scalp off recently, trying to decipher why Magento, the popular eCommerce platform, had decided to stop displaying an entire library of product images on a client’s site. Finally I had a “EUREKA” moment, and decided if it could have been a permissions problem. As it turns out, it was! (For the most part anyway).
So I thought I’d share the fix here:
- Log in to your server via SSH
- cd to the media directory of your magento installation
- Run:
find. -type d -exec chmod 757 {} \;
This fix…




