简体   繁体   中英

Yii: How can I go on Humhub to Gii

我不能去Gii

and this is my main.php in yii (humhub)

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

    ),

What changes are needed?

You should not modify main.php file to enable gii . Please modify _defaults.php and add gii module in modules array:

// Modules
'modules' => array(
    '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'),
        ),
// All HumHub Modules will automatically loaded via
// /modules/*/autostart.php
//   or
// /modules_core/*/autostart.php

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM