您现在的位置是:首页 > 教程 > dedecms教程dedecms教程
dedecms5.7实现迅雷下载链接的方法
魏成贯2024-01-29 22:53:53dedecms教程已有人查阅
导读在dedecms里有个下载地址链接,理论上就是给个软件下载链接就可以,但是太单调了,所以为了方便用户的下载,今天给大家分享dedecms5.7实现迅雷下载链接。
在dedecms里有个下载地址链接,理论上就是给个软件下载链接就可以,但是太单调了,所以为了方便用户的下载,今天给大家分享dedecms5.7实现迅雷下载链接。
1、首先获取联盟的代码
3、修改 templets/plus/download_links_templet.htm
head区域加入
然后下载地址的代码哪里
改为
require_once(dirname(__FILE__)."/../include/common.inc.php");
require_once(DEDEINC."/channelunit.class.php");
require(DEDEINC."/encode.inc");
引入inc文件
把解压到的inc上传到 include目录
之后找到
1、首先获取联盟的代码
<!-- PHP专用链代码二 --><div src="http://pstatic.xunlei.com/js/webThunderDetect.js" _ue_org_tagname="script" _ue_div_script="1" _ue_script_data="" _ue_custom_node_="1"></div><!--?php--><!--?php thunderurl="ThunderEncode("http://资源实际下载地址");"--><!--?php--><!--?php-->
2、软件频道设置 设置连接显示方式为要求进入下载地址列表页3、修改 templets/plus/download_links_templet.htm
head区域加入
然后下载地址的代码哪里
改为
<table align="center" border="0" cellspacing="2" width="100%">
<tbody>
<tr>
<td height="30" bgcolor="#F2F7E6">下载地址列表:</td></tr><tr><td height="78">
<!--?php-->
<a href="<?php echo $thunderUrl; ?>" data_ue_src="<?php echo $thunderUrl; ?>">迅雷专用下载地址</a>
<!--?php-->
</td>
</tr>
</tbody>
</table>
4、再修改 plus/download.phprequire_once(dirname(__FILE__)."/../include/common.inc.php");
require_once(DEDEINC."/channelunit.class.php");
require(DEDEINC."/encode.inc");
引入inc文件
把解压到的inc上传到 include目录
之后找到
$ctag = '';
$downlinks = ch_softlinks($row[$vname], $ctag, $cu, '', TRUE);
require_once(DEDETEMPLATE.'/plus/download_links_templet.htm');
exit();
改为 即加上
$ctag = '';
$downlinks = ch_softlinks($row[$vname], $ctag, $cu, '', TRUE);
$turelinks = trim($ctag->GetInnerText());
if(strpos("$turelinks","http") > -1 )
{
$turelink = $turelinks;
}
else {
$phppath = $GLOBALS['cfg_basehost'];
$turelink = $phppath.$turelinks;
}
$thunderUrl = ThunderEncode("$turelink");
echo "<div _ue_org_tagname="script" _ue_div_script="1" _ue_script_data="OnDownloadClick('%22.%24thunderUrl.%22'%2C''%2Clocation.href%2C'132243'%2C2%2C''%2C4)" _ue_custom_node_="1"></div>";
require_once(DEDETEMPLATE.'/plus/download_links_templet.htm');
exit();
一切完毕后,在添加软件的时候就可以看到迅雷的填写框,前台就可以看到迅雷的下载地址。
本文标签:
很赞哦! ()
相关文章
随机图文
-
dedecms织梦GBK版安装sphinx全文索引无法查询无结果修复
本测试安装的是sphinx中文版-coreseek 4.0版,用测试中文的命令在命令行查询:echo网络搜索|iconv-fgbk-tutf-8|sear -
织梦cms系统出现Safe Alert: Request Error step 1/2的解决方法
织梦dedecms出现Safe Alert: Request Error step 1 ! 或Safe Alert: Request Error step 2!的解决方法 -
dedecms5.7伪静态规则设置教程
DedeCMS V5.7 较新伪静态规则 列表 列表分页 内容页 内容分页相信大家都在网上找到很多关于DEDE伪静态规则 ,但是大家发现了没有,列表分页、 -
dedecms织梦列表页dede:list标签按文章权重weight排序的实例
下面就是织梦cms列表页{dede:list}标签实现按文章权重weight排序的方法:1、找到根目录include/arc.listview.class
留言与评论 (共有 条评论) |