在我的应用程序中使用多个布局后,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>
...
我在请求记录器上对其进行了测试,它发送和接收请求。
提前致谢