[摘要]织梦内容打点系统DedeCms 以简朴、实用、开源而闻名,是海内最知名的PHP开源网站打点系统,也是利用用户最多的PHP类CMS系统。
见到论坛里有部门伴侣反应宣布内容,内容缩略图选择为"站内选择"方法上传图片,上传乐成后,点击标红的图片链接地点时无回响!
看了下/include/dialog 下的涉及图片上传的两个逻辑处理惩罚文件 select_images.php 和 select_images_post.php,个中对编辑器和文本框上传的差异处理惩罚有一个判定的BUG
这里给出批改要领:
在 /include/dialog/select_images.php 文件
<form action='select_images_post.php' method='POST' enctype="multipart/form-data">后添加一行,内容如下:
<?php $noeditor = !empty($noeditor)?"<input type='hidden' value='yes'>":''; echo $noeditor;?>修改 /include/dialog/select_images_post.php 文件 中 第 115行
ShowMsg("乐成上传一幅图片!","select_images.php?imgstick=$imgstick&comeback=".urlencode($filename_name)."&v=$v&f=$f&CKEditorFuncNum=$CKEditorFuncNum&activepath=".urlencode($activepath)."/$mdir&d=".time());为:
if(!empty($noeditor)){//(2011.08.25 按照用户反馈批改图片上传回调 by:织梦的鱼)
ShowMsg("乐成上传一幅图片!","select_images.php?imgstick=$imgstick&comeback=".urlencode($filename_name)."&v=$v&f=$f&CKEditorFuncNum=$CKEditorFuncNum&noeditor=yes&activepath=".urlencode($activepath)."/$mdir&d=".time());
}else{
ShowMsg("乐成上传一幅图片!","select_images.php?imgstick=$imgstick&comeback=".urlencode($filename_name)."&v=$v&f=$f&CKEditorFuncNum=$CKEditorFuncNum&activepath=".urlencode($activepath)."/$mdir&d=".time());
}
织梦CMS(DedeCMS) v5.7 SP1 GBK build20150618下载
界面预览
分享到