私はyii-1.1.12でMAMPproを使用しています。そして私はyii-user-managementの最新バージョンをインストールしようとしています。
Webアプリのルートは/Users/myname/Sites/yii-1.1.12/htdocsです。
'modules'フォルダーを作成し、yii-user-managementをそのフォルダーにコピーしました。
htdocs>保護>モジュール(モジュールとサブフォルダーは書き換えに設定されています)
config / main.php
'modules'=>array(
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'password',
// If removed, Gii defaults to localhost only. Edit carefully to taste.
'ipFilters'=>array('127.0.0.1','::1'),
),
'modules' => array(
'user' => array(
'debug' => true,
)
),
),
'components'=>array(
'user'=>array(
// enable cookie-based authentication
'class' => 'application.modules.user.components.YumWebUser',
'allowAutoLogin'=>true,
'loginUrl' => array('//user/user/login'),
),
'import'=>array(
'application.modules.user.models.*',
),
etc...
手紙の指示に従いましたが、ブラウザでユーザー/インストールを呼び出すと、404エラーが発生します。 http://yii.dev:8888/index.php/user/install
私のページは問題なく動作しますhttp://yii.dev:8888/index.php/login(index.phpの有無にかかわらず)
とてもイライラします。どんな助けでもいただければ幸いです。