首先修改你生成出来的框架下的 protected/config/main.php 开启你的gii功能
'modules'=>array(
// uncomment the following to enable the Gii tool
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'123456',//进入gii功能密码
// If removed, Gii defaults to localhost only. Edit carefully to taste.
'ipFilters'=>array('127.0.0.1','::1'),
),
)
打开网址 http://yii.test.com/test1/index.php?r=gii
输入你设置的密码 即可进入web生成页面
可以操作
Controller Generator
Crud Generator
Form Generator
Model Generator
Module Generator