配置文件在 protected\config\main.php 开启gii 找到下面这段代码,把注释去掉:

1
2
3
4
5
6
7
8
/*
'gii'=>array(
    'class'=>'system.gii.GiiModule',
    'password'=>'Enter Your Password Here',
    // If removed, Gii defaults to localhost only. Edit carefully to taste.
    'ipFilters'=>array('127.0.0.1','::1'),
),
*/

修改password为自己使用的密码。 ps:如果访问gii的时候提示文件不存在,那就修改ipFilters中127.0.0.1为自己的IP。 开启数据库 找到下面这段代码:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
'db'=>array(
    'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db',
),
// uncomment the following to use a MySQL database
/*
'db'=>array(
    'connectionString' => 'mysql:host=localhost;dbname=testdrive',
    'emulatePrepare' => true,
    'username' => 'root',
    'password' => '',
    'charset' => 'utf8',
),
*/

把上面一段注释掉,下面一段开启,修改之后如下:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
/*
'db'=>array(
    'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db',
),
*/
// uncomment the following to use a MySQL database

'db'=>array(
    'connectionString' => 'mysql:host=localhost;dbname=appyii',
    'emulatePrepare' => true,
    'username' => 'root',
    'password' => '',
    'charset' => 'utf8',
    'tablePrefix'=>'fe_',//指表前缀,需要的自行添加
),

dbname:指数据库名。