I faced this error at the following code and I can't solve it. What should I do? I'm a beginner in Yii2.
Fatal error: Uncaught Error: Class 'yii\widgets\ActiveForm' not found C:\wamp64\www\yii-basic\views\post\index.php
<?php
use yii\widgets\ActiveForm;
use yii\helpers\Html;
?>
<?php
$form = ActiveForm::begin([
'id'=>'post-form',
'options'=>['class'=>'form-horizontal']
]);
?>
<?= $form->field('$model','title');?>
<?= $form->field('$model','content')->textarea();?>
<?= $form->field('$model','tags');?>
<?= $form->field('$model','status')->checkbox();?>
<div class="form-group">
<div class="col-lg-offset-1 col-lg-11">
<?= Html::submitButton('save',['class','btn btn-success']) ?>
</div>
</div>
<?php
ActiveForm::end();
?>
yii\widgets\ActiveForm
should be invendor/yiisoft/yii2/widgets/ActiveForm.php
. if you don't have this file, then it means that your installation is incomplete. Try deletevendor
directory and runcomposer install
again. - rob006