雷火电竞-中国电竞赛事及体育赛事平台

歡迎來到入門教程網(wǎng)!

dedecms

當(dāng)前位置:主頁 > CMS教程 > dedecms >

DEDECMS內(nèi)容圖片如何在二級域名下調(diào)用的解決方法

來源:本站原創(chuàng)|時間:2021-08-05|欄目:dedecms|點(diǎn)擊:

DedeCmsSYSTEM_配置參數(shù)->其它選項(xiàng)中有兩個配置選項(xiàng):[附件目錄是否綁定為指定的二級域名|附件目錄的二級域名]很明顯示官方早就注意到了在二級域名下的各種子問題!解決辦法:
  我們現(xiàn)在打開include/FCKeditor/editor/dialog/目錄下的文件:“dede_image.php”!
  找到下面的代碼
  if($cfg_multi_site=='N')
  {
  $imgHtml.="<imgsrc=\"$imgsrcValue\"width=\"$imgwidthValue\"border=\"0\"height=\"$imgheightValue\"alt=
\"$altname\"style=\"cursor:pointer\"onclick=\"window.open('$urlValue')\"/><br/>\r\n";
  }
  else
  {
  if(empty($cfg_basehost))$cfg_basehost='http://'.$_SERVER["HTTP_HOST"];
  $imgHtml.="<imgsrc=\"$imgsrcValue\"width=\"$imgwidthValue\"border=\"0\"height=
\"$imgheightValue\"alt=\"$altname\"style=\"cursor:pointer\"onclick=\"window.open('$urlValue')\"/><br/>\r\n";
  }
  吧代碼改成下面的代碼
  if($GLOBALS['cfg_addon_domainbind']){$addon_domain=$GLOBALS['cfg_addon_domain'];}
  if($cfg_multi_site=='N')
  {
  $imgHtml.="<imgsrc=\"{$addon_domain}{$imgsrcValue}\"width=\"$imgwidthValue\"border=\"0\"height=\"$imgheightValue\"alt=
\"$altname\"style=\"cursor:pointer\"onclick=\"window.open('{$addon_domain}{$urlValue}')\"/><br/>\r\n";
  }
  else
  {
  if(empty($cfg_basehost))$cfg_basehost='http://'.$_SERVER["HTTP_HOST"];
  $imgHtml.="<imgsrc=\"{$addon_domain}{$imgsrcValue}\"width=\"$imgwidthValue\"border=\"0\"height=\"$imgheightValue\"alt=
\"$altname\"style=\"cursor:pointer\"onclick=\"window.open('{$addon_domain}{$urlValue}')\"/><br/>\r\n";
  }
  看看,現(xiàn)在上傳的圖片正常了吧,接下來咱們要考慮的是下面不是有一個“瀏覽服務(wù)器_”的按紐嗎,[圖片/隨便/flash/多媒體]都有這個功能!
  我們先打開include/dialog/目錄下的select_images.php|select_media.php|select_soft.php|select_templets.php
  將下面的代碼:
  $activeurl='..'.$activepath;
  改成以下的代碼
  if($GLOBALS['cfg_addon_domainbind']){$addon_domain=$GLOBALS['cfg_addon_domain'];}
  $activeurl='..'.$addon_domain.$activepath;
  現(xiàn)在我們已經(jīng)完成所以的更改,這樣更改是在保證織夢CMS內(nèi)容管理SYSTEMSYSTEM_的完整性上改的,只有內(nèi)容中的圖片才會變!當(dāng)然前提是你要開啟:附件目錄是否綁定為指定的二級域名而且指定二級域名地址。
 

上一篇:織夢dedecms 插件plus文件調(diào)用頭部尾部的方法

欄    目:dedecms

下一篇:織夢DEDECMS 如何調(diào)用隨機(jī)數(shù)

本文標(biāo)題:DEDECMS內(nèi)容圖片如何在二級域名下調(diào)用的解決方法

本文地址:http://www.jygsgssxh.com/a1/dedecms/14658.html

更多dedecms

您可能感興趣的文章

閱讀排行

本欄相關(guān)

隨機(jī)閱讀

網(wǎng)頁制作CMS教程網(wǎng)絡(luò)編程軟件編程腳本語言數(shù)據(jù)庫服務(wù)器

如果侵犯了您的權(quán)利,請與我們聯(lián)系,我們將在24小時內(nèi)進(jìn)行處理、任何非本站因素導(dǎo)致的法律后果,本站均不負(fù)任何責(zé)任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權(quán)所有