升级一个wordpress 博客的时候,由于网络不好,中断的操作。再次升级的时候,出现了 Error: 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"
评论