dedecms织梦会员中心发布图集缩略图失败,此为BUG,其表现为上传的缩略图为空,或者自动提取了图集图片为缩略图。
查看了官方默认版本,也存在此BUG。
修复方法
打开 /member/album_add.php 找到
$pagestyle = in_array($pagestyle,array('1','2','3')) ? $pagestyle : 2;include(DEDEMEMBER.'/inc/archives_check.php');
注释掉第2行
$pagestyle = in_array($pagestyle,array('1','2','3')) ? $pagestyle : 2;//include(DEDEMEMBER.'/inc/archives_check.php'); //bug
分析原因
此文件中引入了两次 ,对缩略图检测处理的部分冲突了,导致问题出现
$svali = GetCkVdValue();if(preg_match("/1/",$safe_gdopen)){ if(strtolower($vdcode)!=$svali || $svali=='') { ResetVdValue(); ShowMsg('验证码错误!', '-1'); exit(); } }