ここで壊れた 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,
),
);
}
Comment モデルに、新しいルールを追加しました。
array('verifyCode', 'captcha', 'on' => 'insert', 'allowEmpty'=>!Yii::app()->user->isGuest)
および新しいパブリック メンバー:
public $verifyCode;
お問い合わせフォームのキャプチャは正常に機能します。しかし、コメント フォームでは、画像が壊れていて、更新するリンクが機能しません。何か案は?