点击自动更新出现: 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 大意是: 自动更新失败, 因为我们不能复制某些文件. 这通常是因为不一致的文件权限导致的, 请检查wp-admin/includes/update-core.php的文件权限. 其解决办法在这里: wordpress permissions update error resolved 具体地, 先切换到wp所在目录, 例如我的是在:/var/www/blog/ 更改wordpress目录下文件的权限为644: sudo find wordpress/ -type f -exec chmod 664 {} \; 更改wordpress目录下目录的权限为775: sudo find wordpress/ -type d… Continue reading WP自动升级失败—不一致的文件权限wp-admin/includes/update-core.php