Dedecms 软件下载模块中添加下载方式为迅雷下载联盟代码,用Dedecms做下载的朋友可以参考下。
推荐学习:织梦cms
查找
<?PHP
在它上面加入
<script src="http://pstatic.xunlei.com/js/webThunderDetect.js"></script>
在它下面加入
require("encode.inc");
查找
代码如下:
else if($open==1){ $link = base64_decode($link); echo "<script language='javascript'>location=\"$link\";</script>"; exit();
替换为
代码如下:
else if($open==1){ $link = base64_decode($link); $Url = ("http://jb51.net/url".$link); $thunderUrl = ThunderEncode($Url); echo "<script>OnDownloadClick('".$thunderUrl."','',location.href,'你的联盟id',2,'')</script>"; exit(); }
把迅雷联盟的 encode.inc 文件 放到 plus 目录
原文链接:https://www.f2er.com/dedecms/534115.html