全部迅雷化的改法
1.全部迅雷化:是把你网站上的所有资源下载链接都转换成迅雷专用链接。
2.全部迅雷化只需要修改\plus\download.php这个文件就可以了。
3.打开\plus\download.php这个文件:
A) 找到以下代码:
header("location:$link");
把这句代码替换成以下代码:
$thunderPrefix="AA";
$thunderPosix="ZZ";
$thunderTitle="thunder://";
$name = $link;
$pan = "://";
$con = explode($pan,$name);
if (count($con)>1)
{
$thunderUrl=$thunderTitle.base64_encode($thunderPrefix.$link.$thunderPosix);
}
else
{
$thunderUrl=$thunderTitle.base64_encode($thunderPrefix."http://localhost:6070/dedecms55/".$link.$thunderPosix);
}
echo "<script src='http://pstatic.xunlei.com/js/webThunderDetect.js'></script><script>OnDownloadClick('".$thunderUrl."','',location.href,'92922',2,'')</script>";
echo "<script>window.opener=null;window.close();</script>";
B) 找到以下代码:
header("location:{$softUrl}");
把这句代码替换成以下代码:
$thunderPrefix="AA";
$thunderPosix="ZZ";
$thunderTitle="thunder://";
$name = $softUrl;
$pan = "://";
$con = explode($pan,$name);
if (count($con)>1)
{
$thunderUrl=$thunderTitle.base64_encode($thunderPrefix.$softUrl.$thunderPosix);
}
else
{
$thunderUrl=$thunderTitle.base64_encode($thunderPrefix."http://localhost:6070/dedecms55/".$softUrl.$thunderPosix);
}
echo "<script src='http://pstatic.xunlei.com/js/webThunderDetect.js'></script><script>OnDownloadClick('".$thunderUrl."','',location.href,'92922',2,'')</script>";
echo "<script>window.opener=null;window.close();</script>";
注意:
1)把以上所有代码里面的“http://localhost:6070/dedecms55/”这个全部修改成你自己的域名。
2)把 <script>OnDownloadClick('".$thunderUrl."','',location.href,'92922',2,'')</script>这句里面的92922修改成你自己的联盟号
4.download.php这个文件修改完毕,详情请查看附件里面的download.php文件。
5.覆盖说明:
1)用修改好的download.php这个文件覆盖你网站管理系统里面的\plus\download.php这个文件。
2)覆盖后全部重新生成一下就可以了。
以上附件打包下载
(责任编辑:最模板) |