パスワード強度メーターを作成したいのですが、estrongpassword に従っていますYIIには 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.
設定方法を知りたいのですが、教えてください。前もって感謝します。