我使用以下网址运行gii:localhost/path to index.php?r=gii
,但只有gii模块运行不是giix。
请告诉我giix的正确配置?
我的config.php是:
'import'=>array(
'application.models.*',
'application.components.*',
),
'gii' => array(
'class' => 'system.gii.GiiModule',
'password'=>'.......',
'generatorPaths' => array(
'ext.giix.generators', // giix generators
),
),
'components'=>array(
'ext.giix.components.*',
'messages' => array ( // giix messages directory,giix is and extension.
'extensionBasePaths' => array(
'ext.giix.messages', // giix messages directory.
),
),
),
答案 0 :(得分:3)
根据Giix文档,您需要导入'ext.giix-components。*',generatorPaths应该是'ext.giix-core'。所以你的代码应该是这样的:
'import'=>array(
'application.models.*',
'application.components.*',
'ext.giix-components.*', // You need to import the giix component
),
'gii' => array(
'class' => 'system.gii.GiiModule',
'password'=>'.......',
'generatorPaths' => array(
'ext.giix-core', // giix generator
),
),