2012-11-19 67 views
2

我使用以下url來運行gii:localhost/path to index.php?r=gii,但只有gii模塊不運行giix。如何在yii中運行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

你選擇發電機嗎? Giix添加新的發生器的不清晰模塊 – Sergey

+0

@ Sergery,我不明白..plz幫助我詳細.im新手所以你的coperation將非常有義務。感謝 –

+0

當你去localhost/path/index.php?r = gii - 你可以選擇發電機的路徑 – Sergey

回答

3

根據需要導入的的Giix文檔和generatorPaths應「ext.giix核心 'ext.giix組件*'。 '。所以你的代碼應該是這樣的:

'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 
     ), 
    ),