您的位置:首页 > 其它

WordPress Permissions Update Error [RESOLVED]

2015-06-07 11:54 459 查看
Recently I ran into an issue where an installation of WordPress that had never had any issues updating stopped being able to update via the admin update button.

Specifically these were the errors I would see:

Unpacking the update...

The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions.: wp-admin/includes/update-core.php

Installation Failed

An automated WordPress update has failed to complete


The solution as it turns out is to reset the file permissions on the core files.

Provided you have SSH access to your server, the following commands may fix your issue.

Reset the permissions of all files to
664
:

find /path/to/site/ -type f -exec chmod 664 {} \;


Reset permissions of directories to
775
:

find /path/to/site/ -type d -exec chmod 775 {} \;


Reset the group to the
wordpress
group (or whatever group makes sense for you)

chgrp -R wordpress /path/to/site/


After running those commands I was able to successfully update WordPress with no further issues.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: