wordpress不能通过后台自动更新的解决办法

Posted by

找到网站的源目录,也就是wordpress的安装目录

1、更改文件所有者及用户组

sudo chown www-data:www-data  -R * 

2、分别更改文件以及目录的所有权

find . -type d -exec chmod 755 {} \;  # Change directory permissions rwxr-xr-x
find . -type f -exec chmod 644 {} \;  # Change file permissions rw-r--r--

Leave a Reply

您的电子邮箱地址不会被公开。 必填项已用 * 标注