我尝试在我的本地安装magento 1.9,它返回我下面的错误
Warning: require_once(lib/Mage/Autoload/Simple.php): failed to open stream: Permission denied in /Users/pin/Sites/magento/downloader/index.php on line 32
Fatal error: require_once(): Failed opening required 'lib/Mage/Autoload/Simple.php' (include_path='.:/usr/local/php5/lib/php') in /Users/pin/Sites/magento/downloader/index.php on line 32
我尝试添加
../ lib / Mage的infont
但仍然有错误,有人可以指导我如何解决这个问题,欣赏如果你可以帮我解决这个问题。 谢谢
答案 0 :(得分:0)
这是限制性文件系统权限。请read the docs,然后设置相应的文件/文件夹权限,然后重试:
find . -type f -exec chmod 400 {} \;
find . -type d -exec chmod 500 {} \;
find var/ -type f -exec chmod 600 {} \;
find media/ -type f -exec chmod 600 {} \;
find var/ -type d -exec chmod 700 {} \;
find media/ -type d -exec chmod 700 {} \;