DEDECMS开启附件dedecms系统的完整性,这个很明显不能解决我的问题。
1、我们可以看到 DedeCms系统配置参数->其它选项中有两个配置选项:[附件目录是否绑定为指定的二级域名 | 附件目录的二级域名]很明显示官方早就注意到了在二级域名下的种种问题。
2、打开include/FCKeditor/editor/dialog/目录下的文件:“dede_image.php”。
将这个:
1 | if ($cfg_multi_site== 'N' ) |
3 | $imgHtml .= "<img src=\"$imgsrcValue\" width=\"$imgwidthValue\" border=\"0\" height=\"$imgheightValue\" style="height:auto !important;line-height:20px !important;font-size:14px !important;">; |
7 | if (empty($cfg_basehost)) $cfg_basehost = 'http://' .$_SERVER[ "HTTP_HOST" ]; |
8 | $imgHtml .= "<img src=\"$imgsrcValue\" width=\"$imgwidthValue\" border=\"0\" height=\"$imgheightValue\" style="height:auto !important;line-height:20px !important;font-size:14px !important;">; |
|
改成下面:
01 | if ($GLOBALS[ 'cfg_addon_domainbind' ]){$addon_domain = $GLOBALS[ 'cfg_addon_domain' ];} |
02 | if ($cfg_multi_site== 'N' ) |
04 | $imgHtml .= "<img src=\"{$addon_domain}{$imgsrcValue}\" width=\"$imgwidthValue\" border=\"0\" height=\"$imgheightValue\" style="height:auto !important;line-height:20px !important;font-size:14px !important;">; |
08 | if (empty($cfg_basehost)) $cfg_basehost = 'http://' .$_SERVER[ "HTTP_HOST" ]; |
09 | $imgHtml .= "<img src=\"{$addon_domain}{$imgsrcValue}\" width=\"$imgwidthValue\" border=\"0\" height=\"$imgheightValue\" style="height:auto !important;line-height:20px !important;font-size:14px !important;">; |
|
现在上传的图片正常 了,接下来我们要考虑的是下面不是有一个“浏览服务器”的按纽吗,[图片/随便/flash/多媒体]都有这个功能。
先打开include/dialog/目录下的 select_images.php、select_media.php、select_soft.php、select_templets.php 4个文件
将下面的代码:
$activeurl = '..'.$activepath;
改成:
1 | if ($GLOBALS[ 'cfg_addon_domainbind' ]){$addon_domain = $GLOBALS[ 'cfg_addon_domain' ];} |
2 | $activeurl = '..' .$addon_domain.$activepath; |
|
至此完成所以的更改,这样更改是在保证dedecms系统的完整性上改的,只有内容中的图片才会变。
当然前提是你开启:附件目录是否绑定为指定的二级域名 并且指定二级域名地址。如果不开启就会和你原来的是一样的。
郑重声明:
本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,不存在任何商业目的与商业用途。
若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。
我们不承担任何技术及版权问题,且不对任何资源负法律责任。
如无法下载,联系站长索要。
如有侵犯您的版权,请给我们来信:admin@cniao8.com,我们尽快处理。