WordPress网站更新提示:Another update is currently in progress.

添乐
添乐
管理员
224
文章
0
粉丝
系统应用评论393

升级一个wordpress 博客的时候,由于网络不好,中断的操作。再次升级的时候,出现了 Error: Another update is currently in progress 这个错误提示。

WordPress网站更新提示:Another update is currently in progress.

解决的方法

删除数据库表中的 wp_options.option_name 中名字是 core_updater.lock 这个记录即可。

通过mysql 删除

先查询一下

select * FROM wp_options where option_name="core_updater.lock"

然后执行删除命令:

delete FROM wp_options where option_name="core_updater.lock"

 
添乐
  • 本文由 添乐 发表于2023-04-16
  • 转载请务必保留本文链接:https://www.chaolen.com/249.html