Wordpress 插件安装:无法创建目录
我在 centos 6 上使用 WordPress.
I'm using WordPress on centos 6.
我尝试安装插件.但是我收到了这个错误:
I try to install a plugin. But I got this error:
安装插件:bbPress 2.5.9从 https://downloads.wordpress.org/plugin/bbpress.2.5 下载安装包.9.zip…
Installing Plugin: bbPress 2.5.9 Downloading install package from https://downloads.wordpress.org/plugin/bbpress.2.5.9.zip…
拆包……
无法创建目录.
我该如何解决这个问题?
How can I resolve this?
P/S:我运行这个命令:
P/S: I run this command:
sudo -u root touch /var/www/html/wordpress/wp-content/plugins/test.txt
它有效.但我仍然收到该错误.
and it works. But I still get that error.
推荐答案
运行您的 Web 服务器的用户没有权限写入 Wordpress 打算在其中创建插件目录的目录.您应该 chown 该目录对运行 Wordpress 的用户有疑问.它很可能不是 root.
The user that is running your web server does not have permissions to write to the directory that Wordpress is intending to create the plugin directory in. You should chown the directory in question to the user that is running Wordpress. It is most likely not root.
简而言之,这是一个权限问题.您的 touch 命令正在工作,因为您以 root 身份使用它,并且 root 具有全局权限,可以在任何地方写入.
In short, this is a permissions issue. Your touch command is working because you're using it as root, and root has global permissions to write wherever it wants.
相关文章