ecshop 2.7.3版的
后台验证码显示正常,评论处的验证码不显示,网上查了查最终的解决方法
在 /includes/cls_captcha.php 文件中
function generate_image($word = false)里
======================================================
if ($this->img_type == 'jpeg' && function_exists('imagecreatefromjpeg'))
{
header('Content-type: image/jpeg');
imageinterlace($img_org, 1);
imagejpeg($img_org, false, 95);
}
else
{ @ob_end_clean() ;
header('Content-type: image/png');
imagepng($img_org);
}
========================================================
加入上方红色代码。。。