dedecms后台缩略图以网站绝对地址引用

/include/dialog/select_images.php

第200 左右

修改为


if($cfg_remote_site=='Y' && $remoteuploads == 1)
         {
           $reurl  = $remoteupUrl.$reurl;
        }else{
            $reurl = $GLOBALS['cfg_basehost'].$reurl;
        }

/dede/templets/imagecut.htm

第185行

修改为:

<button type="button" name="useold" onClick="ReturnImg('<?php echo $GLOBALS['cfg_basehost'].$file; ?>')">使用原图</button>



/dede/imagecut.php

第137行

修改为:

ReturnImg("<?php echo $GLOBALS['cfg_basehost'].$ddpicok; ?>");



/include/dialog/select_images_post.php

第108行修改为:

$fileurl = $GLOBALS['cfg_basehost'].$activepath.'/'.$filename;





你可能感兴趣的:(dedecms后台缩略图以网站绝对地址引用)