Magento遇到File is writable by others, please fix permissions and try again怎么办?

2,097 人次阅读
没有评论

共计 321 个字符,预计需要花费 1 分钟才能阅读完成。

有时候升级完Magento或者安装完Magento会遇到File is writable by others, please fix permissions and try again的提示,改怎么办呢?

其实说的很清楚了,就是有些文件本来不该可写的,现在可写了,直接按照Magento安装提示的时候的说明,将除了需要755(777)属性的几个文件和文件夹设置为可写,其他全部设置为不可写即可。

方法有三:

1、可以在主机后台后台将全部文件设置为不可写,再挨个设置需要可写的文件。

2,、用FTP软件(FlashFXP)等设置亦可。

3、SSH登陆,执行下面命令:

  1. find . -type f -exec chmod 644 {} ;
  2. find . -type d -exec chmod 755 {} ;
正文完
 0