我已经在这里应用了关于破损的yii验证码的所有其他解决方案,但无济于事。所以我正在添加自己的问题。
我已经浏览了yii博客教程(http://www.yiiframework.com/doc/blog/),但我没有批准评论,而是希望在评论表单中有一个验证码。我已将此添加到评论表单视图中:
<?php if(CCaptcha::checkRequirements()): ?>
<div class="row">
<?php echo $form->labelEx($model,'verifyCode'); ?>
<div>
<?php $this->widget('CCaptcha'); ?>
<?php echo $form->textField($model,'verifyCode'); ?>
</div>
<div class="hint">Please enter the letters as they are shown in the image above.
<br/>Letters are not case-sensitive.</div>
<?php echo $form->error($model,'verifyCode'); ?>
</div>
<?php endif; ?>
在CommentController中,accessRules()变为:
public function accessRules()
{
return array(
array('allow', // allow all users to perform 'index' and 'view' actions
'actions'=>array('index','view', 'captcha'),
'users'=>array('*'),
),
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('create','update'),
'users'=>array('@'),
),
array('allow', // allow admin user to perform 'admin' and 'delete' actions
'actions'=>array('admin','delete'),
'users'=>array('admin'),
),
array('deny', // deny all users
'users'=>array('*'),
),
);
}
我在CommentController中覆盖actions():
public function actions()
{
return array(
// captcha action renders the CAPTCHA image displayed on the contact page
'captcha'=>array(
'class'=>'CCaptchaAction',
'backColor'=>0xD99D25,
),
);
}
在评论模型中,我添加了一条新规则:
array('verifyCode', 'captcha', 'on' => 'insert', 'allowEmpty'=>!Yii::app()->user->isGuest)
和新的公共成员:
public $verifyCode;
联系表格上的验证码工作正常。但是在评论表单中,图像被破坏,刷新它的链接不起作用。有什么想法吗?
答案 0 :(得分:1)
我将此代码添加到博客演示中,看起来像验证码的请求是PostController而不是CommentController。如果你将验证码操作添加到PostController,它应该可以工作。
答案 1 :(得分:0)
您是否打开过您的萤火虫或网络检查员?它对验证码请求有什么回应?