Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
因此,我将我的 wordpress 目录的 chown 所有者更改为 nobody(没有人运行 apache)...现在我可以在仪表板中自动更新并编辑文件,但我无法通过 FTP 上传其他任何内容。
我该如何解决这个问题?
将自己分配到文件所属的组。
例如,如果您的 Web 文件归该组所有nobody并分配给该组webgroup,而您的 ftp 用户是该组,finaldestiny那么您将运行该命令usermod -a -G webgroup finaldestiny
nobody
webgroup
finaldestiny
usermod -a -G webgroup finaldestiny
您还需要确保该文件夹和文件可由组写入,而不仅仅是所有者。您可以chmod -R g+w webroot为组的 webroot 中的所有文件和文件夹添加写权限。
chmod -R g+w webroot