替代迅雷的下载软件搜集

1、由于业务发展上的调整,“QQ旋风”将于2017年9月6日停止运营
2、迅雷关闭远程离线下载

替代迅雷的下载软件
1、百度网盘

2、free download manager 不支持ed2k
http://www.freedownloadmanager.org/

3、Persepolis Download Manager 是一款即开即用的 aria2 客户端,用来下载网络上的文件,支持 HTTP / HTTPS,FTP,SFTP,BitTorrent 和 Metalink 等协议
https://persepolisdm.github.io/
https://github.com/persepolisdm/persepolis

4、https://webtorrent.io/ best of the world
https://instant.io/

5、https://www.qbittorrent.org/

解决升级 WordPress 时提示”另一更新正在进行”

解决升级 WordPress 时提示”另一更新正在进行”
解决办法

这是由于在升级Wordpress时,Wordpress会在数据库wp_options表中增加core_updater.lock记录。如中途打断Wordpress升级,这个记录会留在数据库中。当下次升级时,Wordpress检测到此记录的存在就会返回”另一更新正在进行”。可通过以下方法解决:

方法一、通过MySQL数据库管理工具(比如 phpMyAdmin),在 wp_options表中找到 core_updater.lock记录并将这一列数据删除。

方法二、通过终端登录数据库,假设表前缀是_wp,数据库是wordpress,

mysql -u root -p
use wordpress;
select * from wp-options where options_name='core_updater.lock';

delete from wp_options where option_name='core_updater.lock';

刷新更新页面,就能升级了