Yii ユーザー モジュールの最新リリースを github からダウンロードし、次の場所に展開しました。
protected/modules/
ディレクトリなので、この下のディレクトリ構造には、zipに含まれるユーザーとその他のモジュールが含まれます。ドキュメントに記載されているようにメインファイルに変更を加えたので、main.phpは次のようになりました
'import'=>array(
'application.modules.user.models.*',
'application.models.*',
'application.components.*',
),
'modules'=>array(
// uncomment the following to enable the Gii tool
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'sheikh24',
// If removed, Gii defaults to localhost only. Edit carefully to taste.
'ipFilters'=>array('127.0.0.1','::1'),
),
'user' => array(
'debug' => true,
)
),
'components'=>array(
'user'=>array(
'class' => 'application.modules.user.components.YumWebUser',
'allowAutoLogin'=>true,
'loginUrl' => array('//user/user/login'),
),
// uncomment the following to use a MySQL database
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=ewindow',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'tablePrefix' => '',
),
'errorHandler'=>array(
// use 'site/error' action to display errors
'errorAction'=>'index/error',
),
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'error, warning',
),
// uncomment the following to show log messages on web pages
/*
array(
'class'=>'CWebLogRoute',
),
*/
),
),
)
ご覧のとおり、すべてのコードがセットアップされていますが、URLにアクセスすると
http://localhost/ewindow/index.php?r=user/install
次のエラーが発生しました
include(UserModule.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory
または、アプリケーションで他のページにアクセスしようとすると、エラーが発生します
include(YumWebUser.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory
ここで私が間違っていることを誰かに教えてもらえますか? 私を助けてください 。
編集 :
ここにエクステンションへのリンクがあり ます https://github.com/thyseus/yii-user-management