情景再现
点击现在更新,提示wordpress-5.4自动升级失败,只好手动升级了。但是手动升级提示:升级wordpress-5.4失败文章源自小柒网-https://www.yangxingzhen.cn/6587.html
文章源自小柒网-https://www.yangxingzhen.cn/6587.html
第一个反应是,通过object-cache.php缓存数据库了,所以无法升级。但是把数据库缓存停止了,手动升级依然失败。文章源自小柒网-https://www.yangxingzhen.cn/6587.html
解决办法:
这是由于在升级Wordpress时,Wordpress会在数据库wp_options表中增加core_updater.lock记录。如中途打断Wordpress升级,这个记录会留在数据库中。当下次升级时,Wordpress检测到此记录的存在就会返回”另一更新正在进行”。可通过以下方法解决:文章源自小柒网-https://www.yangxingzhen.cn/6587.html
方法一、通过MySQL数据库管理工具(比如 phpMyAdmin),在 wp_options表中找到 core_updater.lock记录并将这一列数据删除。文章源自小柒网-https://www.yangxingzhen.cn/6587.html
方法二、通过终端登录数据库,假设表前缀是wp_,数据库是wordpress,文章源自小柒网-https://www.yangxingzhen.cn/6587.html
[root@localhost ~]# mysql -uroot -p文章源自小柒网-https://www.yangxingzhen.cn/6587.html
mysql> use Wordpress;文章源自小柒网-https://www.yangxingzhen.cn/6587.html
mysql> select * from wp_options where option_name='core_updater.lock';文章源自小柒网-https://www.yangxingzhen.cn/6587.html
mysql> delete from wp_options where option_name='core_updater.lock';文章源自小柒网-https://www.yangxingzhen.cn/6587.html
刷新更新页面,就能升级了!
若文章图片、下载链接等信息出错,请在评论区留言反馈,博主将第一时间更新!如本文“对您有用”,欢迎随意打赏,谢谢!
评论