Magento sufficient write file permissions : This problem came very frequently when you are using magento or installing it in linux based server . use following linux shell script to fix these issues in a fly .
find . -type d -exec chmod 755 {} \; find . -type f -exec chmod 644 {} \;
enjoy 🙂
Be the first to comment.