繼http://www.yiiframework.com/doc/blog/1.1/en/prototype.scaffold教程,它提到要添加一些代碼來/blog/protected/config/main.phpgii 404錯誤。無法使用GII
return array(
......
'import'=>array(
'application.models.*',
'application.components.*',
),
'modules'=>array(
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'pick up a password here',
),
),
);
這些都是我的main.php代碼的最後幾行,因爲你?可以看到,我按照指示...
'errorHandler'=>array(
// use 'site/error' action to display errors
'errorAction'=>'site/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',
),
*/
),
),
),
// application-level parameters that can be accessed
// using Yii::app()->params['paramName']
'params'=>array(
// this is used in contact page
'adminEmail'=>'[email protected]',
),
'import'=>array(
'application.models.*',
'application.components.*',
),
'modules'=>array(
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'pick up a password here',
),
),
);
然而,當我訪問的index.php R = GII,我得到以下錯誤:
Error 404 Unable to resolve the request "gii".
FYI - 我正在使用最新的穩定版本1.1.12。
UPDATE
我刪除一切,重新開始,現在正在工作。必須做一些愚蠢的行程
需要完整的配置。 還有路由規則。 –
http://pastebin.com/x3zWWLtm這是默認的路由規則。這是我的第一個yii應用程序,我只是在全新安裝後繼續教程。 http://derp.co.uk/07275 – Gravy
你的應用程序文件夾裏有一個.htaccess文件嗎? –