Yii 的验证码出不来 [ 新手入门 ]
怎样在评论中加上验证码???
我加上了验证码怎么都出不来,index.php?r=post/captcha
页面显示404 CHttpException
,该如何解决,求高手指教
共 6 条回复
-
在controller 里的actions中加上
return array( 'captcha'=>array( 'class'=>'CCaptchaAction', 'backColor'=>0xcfedf4, 'height'=>35, 'width'=>100, ), );
在view里调用一下就可以了
例如:<?php $form=$this->beginWidget('CActiveForm', array( 'id'=>'login-form', 'enableClientValidation'=>true, 'clientOptions'=>array( 'validateOnSubmit'=>true, ), )); ?> <div class="row"> <?php echo $form->labelEx($model,'verifyCode'); ?> <?php echo $form->textField($model,'verifyCode'); ?> <?php $this->widget('CCaptcha'); ?> <?php echo $form->error($model,'verifyCode'); ?> </div>
someday 北京
注册时间:2012-04-10
最后登录:2019-01-24
在线时长:7小时52分
最后登录:2019-01-24
在线时长:7小时52分
- 粉丝7
- 金钱1145
- 威望10
- 积分1315