1

在我的应用程序中使用多个布局后,Cpatcha 不显示任何图像:(

这是我的代码

控制器 :

public function actions()
        {
                return array(
                        // captcha action renders the CAPTCHA image displayed on the contact page
                        'captcha'=>array(
                                'class'=>'CCaptchaAction',
                                'backColor'=>0xFFFFFF,
                        ),
                        // page action renders "static" pages stored under 'protected/views/site/pages'
                        // They can be accessed via: index.php?r=site/page&view=FileName
                        'page'=>array(
                                'class'=>'CViewAction',
                        ),
                );
        }

模型 :

public function rules()
{
        return array(
                array('email, password', 'required','message'=>'-- {attribute}  '),

                array('password', 'authenticate'),

                // verifyCode needs to be entered correctly
        array('verifyCode', 'captcha', 'allowEmpty'=>!CCaptcha::checkRequirements(),'message'=>' {attribute}  Error '),

);

}

查看通话小部件

...
        <div>
                <?php $this->widget('CCaptcha'); ?>
                <?php echo $form->textField($model,'verifyCode'); ?>
                </div>
...

我在请求记录器上对其进行了测试,它发送和接收请求。 验证码

提前致谢

4

2 回答 2

1

我通过添加 Remove Bom 功能修复了它

ob_start('My_OB');
function My_OB($str, $flags)
{
    //remove UTF-8 BOM
    $str = preg_replace("/\xef\xbb\xbf/","",$str);

    return $str;
}

我猜问题出在页面编码中。

于 2013-01-19T10:50:44.410 回答
0

如果您使用访问控制,很可能您没有设置验证accessRules码操作。您需要添加操作,例如:

public function accessRules() {
    return array(
        array('allow', // all users
            'actions' => ("captcha"),
            'users' => array('*'),
        ),
        array('allow', // authenticated users
            'actions' => ("captcha"),
            'users' => array('@'),
        ),
        array('deny', // deny all users
            'users' => array('*'),
        ),
    );
}
于 2013-01-01T12:16:01.463 回答