我想创建密码强度计。我正在关注YII 的 estrongpassword,我使用了 Estrongpassword 扩展。我将此扩展名放在扩展文件夹中并编写如下代码:
<div class="row">
<?php echo $form->labelEx($model,'password'); ?>
<?php
$this->widget('ext.EStrongPassword.EStrongPassword',
array('form'=>$form, 'model'=>$model, 'attribute'=>'password'));
?>
<?php echo $form->error($model,'password'); ?>
当我检查我的文件时,我发现错误如下:
Alias "ext.EStrongPassword.EStrongPassword" is invalid. Make sure it points to an existing PHP file and the file is readable.
我想知道如何配置它,请帮助我。提前致谢。