DEDECMS内容图片如何在二级域名下调用的解决方法
来源:本站原创|时间:2021-08-05|栏目:dedecms|点击: 次
我们现在打开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_的完整性上改的,只有内容中的图片才会变!当然前提是你要开启:附件目录是否绑定为指定的二级域名而且指定二级域名地址。
上一篇:织梦dedecms 插件plus文件调用头部尾部的方法
栏 目:dedecms
本文标题:DEDECMS内容图片如何在二级域名下调用的解决方法
本文地址:https://www.xiuzhanwang.com/a1/dedecms/14658.html
您可能感兴趣的文章
- 08-05Dedecms文件目录结构解说(能知道织梦每个文件有什么用)
- 08-05Dedecms5.7版ckeditor网页编辑器添加中文字体
- 08-05织梦DedeCMS获取当前栏目文章数量
- 08-05DedeCMS后台模块列表显示空白的解决办法
- 08-05DedeCMS自定义字段图片调用的问题{dede:img ...}解决方法
- 08-05织梦DedeCMS调用显示discuz里面主题的方法
- 08-05常用的织梦dedecms安全设置集合整理
- 08-05dedecms教程:上传图片相对路径改成绝对路径方法
- 08-05DedeCMS会员投稿自动加积分改为投稿审核后加积分
- 08-05织梦教程:手把手教你让dedecms禁止发布重复文章