45IT.COM- 电脑学习从此开始!
DIY硬件教程攒机经验装机配置
设计Photoshop网页设计特效
系统注册表DOS系统命令其它
存储主板显卡外设键鼠内存
维修显卡CPU内存打印机
WinXPVistaWin7unix/linux
CPU光驱电源/散热显示器其它
修技主板硬盘键鼠显示器光驱
办公ExcelWordPowerPointWPS
编程数据库CSS脚本PHP
网络局域网QQ服务器
软件网络系统图像安全
页面导航: 首页 > 设计学院 > 网页设计 >

DEDECMS内容图片在二级域名下调用的方法

电脑软硬件应用网 45IT.COM 时间:2014-06-09 22:57 作者:佚名

  DedeCmsSYSTEM_配置参数->其它选项中有两个配置选项:[附件目录是否绑定为指定的二级域名|附件目录的二级域名]很明显示官方早就注意到了在二级域名下的各种子问题!

  打开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";

  }

  现在上传的图片正常了,接下来咱们要考虑的是下面不是有一个“浏览服务器_”的按纽吗,[图片/随便/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;

  至此完成所以的更改,这样更改是在保证织梦CMS内容管理SYSTEMSYSTEM_的完整性上改的,只有内容中的图片才会变!

  当然前提是你开启:附件目录是否绑定为指定的二级域名而且指定二级域名地址!

顶一下
(2)
100%
踩一下
(0)
0%
------分隔线----------------------------
无法在这个位置找到: baidushare.htm
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
验证码:点击我更换图片
推荐知识