如果全开777权限的确可以让MAGENTO完全使用,但是服务器的性能就倍受威胁。
针对权限问题
文件夹可以开启0775
chmod -R 775;
/index.php和downloader/index.php开0644
这样保险点;
虽然magento很强大,开777的权限也没有问题,但没有不透风的墙,还是保险点吧.
可以进入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
If that is not working, try setting all directories to 777 by doing this:
find . -type f -exec chmod 644 {} ;
find . -type d -exec chmod 777 {} ;
chmod o+w var/.htaccess
chmod 550 mage
关于作者