Warning: Your Magento folder does not have sufficient write permissions.

来源:互联网 发布:淘宝卖啥最赚钱排行 编辑:程序博客网 时间:2024/05/17 18:00

Linux shell terminal magento根目录下执行如下命令:

find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
chmod o+w var var/.htaccess app/etc
chmod 550 mage
chmod -R o+w media

如何还是有错误,可以尝试设置文件夹权限为777

find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 777 {} \;
chmod o+w var/.htaccess
chmod 550 mage

0 0