首页 » IT技术整理 » 正文

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

/include/dialog/select_images.php

第200 左右

修改为 

  1. if($cfg_remote_site==’Y’ && $remoteuploads == 1)
  2.  {
  3.    $reurl  = $remoteupUrl.$reurl;
  4. }else{
  5.     $reurl = $GLOBALS[‘cfg_basehost’].$reurl;
  6. }

 

/dede/templets/imagecut.htm

第185行

修改为:

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

 

/dede/imagecut.php

第137行

修改为:

  1. ReturnImg(“<?php echo $GLOBALS[‘cfg_basehost’].$ddpicok; ?>”);

 

/include/dialog/select_images_post.php

第108行修改为: 

  1. $fileurl = $GLOBALS[‘cfg_basehost’].$activepath.’/’.$filename;

发表评论