Wordpress plugin install: Could not create directory(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.
这篇关于Wordpress 插件安装:无法创建目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Wordpress 插件安装:无法创建目录
基础教程推荐
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 如何替换eregi() 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
