您现在的位置是:首页 > 教程 > dedecms教程dedecms教程

dede织梦cms软件频道判断是本站下载链接再列出镜像的方法

霍负2023-09-25 15:38:59dedecms教程已有人查阅

导读今天把下载频道开启了镜像站点,开启了“ 根据本地地址和服务器列表自动生成 ”,这样较省事,不用每个都填。但是会遇到一个问题,当链接非本地时

今天把下载频道开启了镜像站点,开启了“ 根据本地地址和服务器列表自动生成 ”,这样较省事,不用每个都填。但是会遇到一个问题,当链接非本地时,也会去根据下载地址链接替换掉域名部分生成镜像下载点,这样就会出错,因为镜像站点其目录下根本没这个文件。所以想办法去加个判断,只有是自己域名的了解才生成镜像下载点。
详细的修改方法:
找到文件include/taglib/channel/softlinks.lib.php,按如下来添加一个判断代码,只添加加粗部分即可,域名ebingou.cn请替换为自己网站域名即可。
if (strstr($firstLink, 'ebingou.cn')) //xiaoxin-20120818-判断是ebingou.cn域名下才出现镜像 
{ //xiaoxin-20120818-判断是ebingou.cn域名下才出现镜像 
      $firstLink = preg_replace("#http:\/\/([^\/]*)\/#i", '/', $firstLink); 
 
  foreach($sites as $site) 
  { 
    if(trim($site)=='') continue; 
    list($link,$serverName,$serverType) = explode('|', $site); 
    if (!empty($link_type) && $link_type != trim($serverType)) continue; 
 
    $link = trim( preg_replace("#\/$#", "", $link) ).$firstLink; 
    $downloads = getDownloads($link); 
    $uhash = substr(md5($link), 0, 24); 
    if($row['gotojump']==1) 
    { 
      $link = $phppath."/download.php?open=2&id={$refObj->ArcID}&uhash={$uhash}"; 
    } 
    $temp = str_replace("~link~", $link, $tempStr); 
    $temp = str_replace("~server~", $serverName, $temp); 
    $temp = str_replace("~downloads~", $downloads, $temp); 
    $downlinks .= $temp; 
  } 
} //xiaoxin-20120818-判断是ebingou.cn域名下才出现镜像 

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签