zoukankan      html  css  js  c++  java
  • WordPress Permissions Update Error [RESOLVED]

    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.

  • 相关阅读:
    perl的eval语句
    PythonWin运行出错解决办法
    python多重继承
    perl调用shell
    python正则表达式匹配中文
    perl学习2处理用户输入
    awk介绍
    perl学习3qw及数组的应用
    perl的多线程
    perl学习5子程序中自动识别参数
  • 原文地址:https://www.cnblogs.com/shangdawei/p/4558204.html
Copyright © 2011-2022 走看看