dedecms下載位址加迅雷專用鏈怎麼操作?
織夢dedecms5.5加迅雷專用鏈的操作說明(連結到跳躍頁加專用鏈)
推薦學習:織夢cms
#
特別注意! ! ! ! ! ! ! ! ! ! ! ! !
一.用管理員帳號登陸dedecms5.5後台管理系統
二.點選 “系統” –” “軟體頻道設定”
三.在軟體頻道設定面裡面找到“附件下載方式”,千萬要注意以下三點:
1) 如果你的網站管理系統裡面是選的“鏈接到真實軟體位址”這個選項,你就按照附件裡面提供的「連結到真實軟體位址加專用鏈」資料夾下的說明文件操作。
2) 如果你的網站管理系統內選的是「連結到跳頁」這個選項,你就依照附件裡面提供的「連結到跳頁加專用鏈」資料夾下的說明文檔操作吧。
3) 因為「連結到真實軟體位址加專用鏈」和「連結到跳躍頁加專用鏈」這兩個資料夾下提供的操作說明文件是不一樣的,你要根據你網站管理系統的設置,選擇對應的修改說明文檔,千萬不要選錯了!
四.把文章模組的下載連結轉換成專用鏈的修改方法請依照「修改文章模組的改法」這個裡面提供的改法修改。
部分化修改方法:
1.部分迅雷化:是保留你的本地資源下載鏈接,在你的本地資源下載鏈接的旁邊單獨添加一個迅雷專用鏈接。
2.部分迅雷化,需要修改templets\system\channel_downlinks.htm和\plus\download.php這2個文件,打開這個templets\system\channel_downlinks.htm文件,找到以下程式碼:
#在這句程式碼的前面加上以下程式碼:
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下載位址加迅雷專用鏈怎麼操作的詳細內容。更多資訊請關注PHP中文網其他相關文章!