1、首先保证你的controler 里面的captcha方法是可访问的,被分配的权限的,这个在rule里面设置。
2、保证你的PHP GD插件已经被启用;
3、如果这样还是不显示,那么试试如下方法:
(推荐教程:yii框架)
解决方法:
首先找到yii\framework\web\widgets\captcha\CCaptchaAction.php;
然后可以尝试通过以下几种方法来解决 :
1、尽量删除文中的空格;
2、在php文件顶部加入error_reporting(0);
3、在header输出前加入ob_clean(); 也就是:ob_clean();//加上这行header('Pragma: public');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Content-Transfer-Encoding: binary');
header("Content-type: image/png");
imagepng($image);
imagedestroy($image);
更多编程相关内容,请关注php中文网编程入门栏目!