升级WordPress时提示”另一更新正在进行”
WordPress在升级的过程中,如果你刷新页面或者关闭页面会造成Wordpress升级不成功,下次升级时可能会遇到这样或者那样的问题。例如我前几天升级时刷新了页面,再次升级Wordpress时,Wordpress一直提示”另一更新正在进行”。
这是由于在升级Wordpress时,Wordpress会在数据库wp_options表中增加core_updater.lock记录。如中途打断Wordpress升级,这个记录会留在数据库中。当下次升级时,Wordpress检测到此记录的存在就会返回”另一更新正在进行”。可通过以下方法解决: 通过phpmyadmin或navicat等工具管理Wordpress数据库,在wp_options表中找到core_updater.lock记录并删除。
1mysql -u root -p
2use wordpress;
3select * from wp_options where option_name='core_updater.lock';
4delete from wp_options where option_name='core_updater.lock';
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/wordpress-update-lock/5058.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.