我正在使用带有 yii-1.1.12 的 MAMP pro。我正在尝试安装最新版本的 yii-user-management。
我的 webapp 路线是 /Users/myname/Sites/yii-1.1.12/htdocs
我创建了“模块”文件夹并将 yii-user-management 复制到其中:
htdocs > protected > modules(模块和子文件夹设置为重写)
配置/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)
非常令人沮丧。任何帮助,将不胜感激。