dedecms 下载地址加迅雷专用链的操作方法 比较全

织梦dedecms5.5加迅雷专用链的操作说明(链接到跳转页面加专用链)
特别注意!!!!!!!!!!!!!
一. 用管理员账号登陆dedecms5.5后台管理系统
二. 点击 “系统” –》 “软件频道设置”
三. 在软件频道设置面里面找到“附件下载方式”,千万要注意以下三点:
1) 如果你的网站管理系统里面是选的“链接到真实软件地址”这个选项,你就按照附件里面提供的“链接到真实软件地址加专用链”文件夹下的说明文档操作吧。
2) 如果你的网站管理系统里面选的是“链接到跳转页面”这个选项,你就按照附件里面提供的“链接到跳转页面加专用链”文件夹下的说明文档操作吧。
3) 因为“链接到真实软件地址加专用链”和“链接到跳转页面加专用链”这两个文件夹下提供的操作说明文档是不一样的,你要根据你网站管理系统的设置,选择对应的修改说明文档,千万不要选错了!
四.把文章模块的下载链接转换成专用链的修改方法请按照“修改文章模块的改法”这个里面提供的改法修改。
部分化修改方法:

1.部分迅雷化:是保留你的本地资源下载链接,在你的本地资源下载链接的旁边单独添加一个迅雷专用链接。
2.部分迅雷化,需要修改templets\system\channel_downlinks.htm和\plus\download.php这2个文件,打开这个templets\system\channel_downlinks.htm文件,找到以下代码:
<li><a href="~link~" target="_blank">~server~</a></li>
在这句代码的前面加上以下代码:
<li><a target=_blank href='~link~&flag=1'><font color=red>迅雷专用高速下载</font></a></li>

3.templets\system\channel_downlinks.htm这个文件修改完毕,详情请查看附件里面的channel_downlinks.htm这个文件。

4.打开\plus\download.php这个文件:
A) 找到以下代码:
require_once(DEDEINC."/channelunit.class.php");
在这句代码的下面加上以下代码:

$flag=(int)$_GET['flag'];

B) 找到以下代码:
header("location:$link");
把这句代码替换成以下代码:

if ($flag == 1)
{
$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>";
}
else
{
header("location:$link");
}

C) 找到以下代码:
header("location:{$softUrl}");
把这句代码替换成以下代码:

if ($flag == 1)
{
$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>";
}
else
{
header("location:{$softUrl}");
}
注意:
1)把以上所有代码里面的“http://localhost:6070/dedecms55/”这个全部修改成你自己的域名。
2)把 <script>OnDownloadClick('".$thunderUrl."','',location.href,'92922',2,'')</script>这句里面的92922修改成你自己的联盟号
5.download.php这个文件修改完毕,详情请查看附件里面的download.php文件。

6.覆盖说明:
1)用修改好的download.php这个文件覆盖你网站管理系统里面的\plus\download.php这个文件。
2)用修改好的channel_downlinks.htm这个文件覆盖系统里面的templets\system\channel_downlinks.htm这个文件。
3)覆盖后全部重新生成一下就可以了。
 
全部迅雷化的改法
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)覆盖后全部重新生成一下就可以了。
 
以上附件打包下载
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

织梦DEDECMS 栏目文章文章命名规则修改, 每次添加栏目的时候 都要改文章命名规则,十分麻烦, 修改下面这个地方就可以一改永亦,织梦模板网为您解答 找到\include\common.inc.php 搜索 $cfg_df_namerule 把: $cfg_df_namerule = {typedir}/{Y}/{M}{D}/{aid
当我们通过{dede:arclist keyword=关键词}来调用文章列表时,你会发现只在其中一个栏目里生效,在其他栏目,仍然显示上一次的关键词。 原因是由于arclist的缓存导致的。 只需修改/include/taglib/arclist.lib.php文件,大概在384行: $taghash = md5(seriali
我们在使用织梦dedecms数据库内容替换时候,经常遇到 安全码 显示的无法识别或者不清晰,这个安全码的位置是在核心 - 批量维护 - 数据库内容替换,如果识别不了,这个页面还没有改变验证码的地方,只能重新刷新页面,如果我们不想要这个安全码的话,要怎么操
今天一个客户在安装织梦dedecms时候,安装完成后登录后台就出现Safe Alert Request Error step 2,常用dedecms的朋友都知道,这是织梦的安全机制,在程序觉得有sql注入等攻击时候,会有这种提示。 1、起初我以为是文件没传全,让这个朋友重新传了文件上去安
dede织梦搜索伪静态,伪静态设置成功后,访问URL地址效果如下: 搜索页 http://www.baidu.com/search/织梦.html 搜索分页 http://www.baidu.com/search/织梦-2.html 本教程也适用于手机端。 开启伪静态: 后台-系统参数-核心设置-开启伪静态 后台-系统参数-
在使用 织梦模板 建站中,随机数作为一个偶尔使用到的参数,在具体使用中虽然用的少,但是今天跟版网小编给大家介绍下,大家可以参考下: 实现随机数的调用可以使用下面的js: 方法一:js代码 Math.rondom()*(m-n)+n; //生成在n到m之间的整数 但如果要用随机