Captcha image has been disappeared/won't be featured

Hi guys,

what is influencing captcha image in yii2? I noticed,that image won’t be featured any more, so I am not able to put in correct code in contact view. I passed all necessary conditions shown up in requirements.php!

Here is my formular:




<?php

use yii\helpers\Html;

use yii\bootstrap\ActiveForm;

use yii\captcha\Captcha;


$this->title = 'Contact';

?>

<div class="site-contact">

    <h2><?= Html::encode($this->title) ?></h2>


    <div class="row">

        <div class="col-lg-5">

            <?php $form = ActiveForm::begin(['id' => 'contact-form']); ?>


                <?= $form->field($model, 'name')->textInput(['autofocus' => true]) ?>


                <?= $form->field($model, 'email') ?>


                <?= $form->field($model, 'subject') ?>


                <?= $form->field($model, 'body')->textarea(['rows' => 6]) ?>


                <?= $form->field($model, 'verifyCode')->widget(Captcha::className(), [

                    'template' => '<div class="row"><div class="col-lg-3">{image}</div><div class="col-lg-6">{input}</div></div>',

                ]) ?>


                <div class="form-group">

                    <?= Html::submitButton('Submit', ['class' => 'btn btn-primary', 'name' => 'contact-button']) ?>

                </div>


            <?php ActiveForm::end(); ?>

        </div>

    </div>


</div>



Here is my Url-rule




      'urlManager' => [

            'class' => 'yii\web\UrlManager',

            'enablePrettyUrl' => true,

            'showScriptName' => true,

            'enableStrictParsing' => true,

            'rules' => [

    ...

                '<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>',

                '<action:(contact|captcha)>' => 'site/<action>',

    ...

            ],

        ],



Here is my SiteController:




   public function actions() {

        return [

            'error' => [

                'class' => 'yii\web\ErrorAction',],

            'captcha' => [

                'class' => 'yii\captcha\CaptchaAction',

                'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,],];

    }