我无法在yii模型生成器中创建模型。(Windows上的Xamp) 我正在遵循http://www.yiiframework.com/forum/index.php/topic/32415-create-login-form/
中的步骤我在config / main.php文件中进行了更改...将db名称粘贴在那里"作为test"。 我在我的数据库中创建了一个用户表" test"。 使用gii ..时没有创建模型并显示错误
错误 表'用户'不存在。
我不知道我错过了什么。
这是我的config / main.php文件视图
'modules'=>array(
// uncomment the following to enable the Gii tool
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'gii',
// If removed, Gii defaults to localhost only. Edit carefully to taste.
'ipFilters'=>array('127.0.0.1','::1'),
),
),
/*
'db'=>array(
'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/test.db',
),*/
// uncomment the following to use a MySQL database
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=test',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
),