dedecms织梦图集上传图片后删除图片本地无法删除

解决方法:

打开 \dede\swfupload.php 找到

if(!file_exists($imgfile) && !is_dir($imgfile) && preg_match("#^".$cfg_medias_dir."#", $imgfile))

替换成:

if(file_exists($imgfile) && !is_dir($imgfile) && preg_match("#^".$cfg_medias_dir."#", $picfile))

 

THE END