博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决Wordpress不能自动安装主题、插件
阅读量:6421 次
发布时间:2019-06-23

本文共 3679 字,大约阅读时间需要 12 分钟。

  hot3.png

正 文:
    当你的wordpress遇到以下问题时:
1、不能上传图片 
2、不能自动安装主题、插件(需要FTP账户) 
3、不能自动更新 
4、其它任何需要wordpress写文件的问题
    这些问题基本都是一个原因,
你的wordpress目录不属于当前的用户和组,
即web访问的用户没有权限操作wp的一切需要写权限的操作。
解决方法
首先需要你有root权限,SSH登录,进入到wp的安装目录:
cd /var/www/html/my_wp_blog
给予所有的写权限:
chmod 777 wp-content
接下来给你的博客的文章上传一张图片,WP会生成一个目录,
然后查看是哪个用户创建了文件夹。一般情况下,这个用户名叫“
apache”,也有不少人发现这个用户是“nobody”,就
本身遇到的问题,我在VPS上安装的是LNmp,
这个用户是“www”。
进入到wp的wp-content目录,查看该目录下所有文件/
文件夹的权限,所属用户、用户组:
cd wp-content
ls -l
total 16
-rw-r–r– 1 root root   30 May 
 4  2007 index.php
drwxr-xr-x 3 root root 4096 
Feb 10 19:31 plugins
drwxr-xr-x 5 root root 4096 
Mar 23 03:04 themes
drwxrwxrwx 3 www www 4096 Mar 
24 02:08 uploads
注意上传目录 uploads 是用户 www 创建的。
接下来把wp-content权限还原到 755::
cd ..
chmod 755 wp-content
下来就是实际修复的命令了,
改变wp所在文件夹的拥有者为刚找到的这个用户www:
cd ..
chown -R www:www my_wp_blog
OK,问题解决了。下面是英文的原文:
There are a wide variety of 
problem reports appearing on 
support forums related to 
Wordpress that all have one 
root cause and solution. Here 
are some common issue 
descriptions:
* Problems uploading images
* Problems installing themes, 
plugins
* Problems auto-upgrading 
Wordpress
* Anything else where 
Wordpress needs to write files
And here is a typical error 
message:
“To perform the requested 
action, connection 
information is required.” Or…
“Unable to create directory [.
..]. Is its parent directory 
writable by the server?”
The problem is that Wordpress 
is executing in the context 
of your web server process, 
but the directories have 
write permissions based on 
the user context used to 
originally create the 
directories.
Many of the suggested 
solutions on the web simply 
won’t work, while other 
solutions work but create 
security problems with your 
Wordpress installation. Here 
is the full solution that 
should work on all Linux 
systems, regardless of the 
specific environment. What we 
are going to do is give your 
web server ownership of the 
directories and files of your 
Wordpress install. This 
requires you to be 
knowledgeable and comfortable 
in your bash shell 
environment, which is 
probably reasonably true if 
you installed Wordpress 
yourself.
First we will give everybody 
write access so that WP can 
write the content directories.
 Some solutions on the web 
stop at this step, but this 
leaves your files with no 
filesystem security. We are 
only doing this briefly in 
order to determine what user 
context is being used by the 
web server.
Go to your Wordpress root 
directory:
cd /var/www/html/my_wp_blog
Give the world write access 
to the content directory:
chmod 777 wp-content
Now log into Wordpress and 
upload a photo to a blog post,
 causing WP to create the new 
directories required. Then 
look on the server to see 
what user created the 
directories. This would 
commonly be apache, but also 
many people are reporting 
that this is the user “nobody”
 on their server.
# cd wp-content
# ls -l
total 16
-rw-r–r– 1 root root   30 May 
 4  2007 index.php
drwxr-xr-x 3 root root 4096 
Feb 10 19:31 plugins
drwxr-xr-x 5 root root 4096 
Mar 23 03:04 themes
drwxrwxrwx 3 apache apache 
4096 Mar 24 02:08 uploads
Notice that the uploads 
directory was created by user 
apache:apache. This is the 
information you needed. Go 
back down one dir level and 
set the permissions back to a 
secure level.
# cd ..
# chmod 755 wp-content
Now for the actual fix. 
Recursively set the owner and 
group for your Wordpress 
installation to the user that 
created the uploads directory.
# cd ..
# chown -R apache:apache my_wp_blog

You’re done. Wordpress now  has access to the file system  for photo and attachment  uploads, automatic upgrades,  and anything else needed by  your plugins.

更多 wp权限信息见: http://my.oschina.net/kjpioo/blog/162698

转载于:https://my.oschina.net/kjpioo/blog/162697

你可能感兴趣的文章
判断闰年的函数
查看>>
pkill -9 nginx
查看>>
关于ASP.NET MVC4 Web API简单总结
查看>>
BGP最新的AS号:4-byte-as 转换为十进制及AS号兼容性
查看>>
Windows2008server R2 组策略批量更改本地管理员密码
查看>>
ubutnu安装geany
查看>>
webservice 之 Java CXF实战效果 RS WS(一)
查看>>
iOS企业证书发布流程
查看>>
我的友情链接
查看>>
Repository 与 DAO
查看>>
【vmcloudlab】Hyper-V平台上安装Linux集成服务
查看>>
Zabbix监控Windows主机
查看>>
Android加载第三方jar混淆出错的问题
查看>>
vsftp安装配置
查看>>
Docker的文件系统
查看>>
shell版计算器(支持简单四则运算)
查看>>
IBM x3850 RAID5数据恢复方案及过程
查看>>
移动计算领域五大机遇:交通运输优势待挖掘
查看>>
如何把win7 旗舰版升级到sp1最新版本
查看>>
android 调用系统界面
查看>>