有时候新安装完wordpress,安装插件或主题的时候,会要求输入FTP账号密码,一般是因为权限问题导致的,需要修改相关文件的权限。登录到VPS以后,执行以下命令即可修复。
chown -R www.www /data/wwwroot/ find /data/wwwroot/ -type d -exec chmod 755 {} \; find /data/wwwroot/ -type f -exec chmod 644 {} \;
有时候新安装完wordpress,安装插件或主题的时候,会要求输入FTP账号密码,一般是因为权限问题导致的,需要修改相关文件的权限。登录到VPS以后,执行以下命令即可修复。
chown -R www.www /data/wwwroot/ find /data/wwwroot/ -type d -exec chmod 755 {} \; find /data/wwwroot/ -type f -exec chmod 644 {} \;