Solved Gii

I recently downloaded the latest version of Yii (1.1.14), created a webapp, and installed the latest version of Yiistrap.

I followed all the steps in Getting Started, and what always used to work




    'modules' => array(

        ...

        'gii' => array(

            'generatorPaths' => array('bootstrap.gii'),

        ),

    ),



now gives the following error when I try to load http://localhost/test/index.php?r=gii :


Property "GiiModule.gii" is not defined. 

Anybody else run into this problem?

read this first:

http://www.yiiframework.com/wiki/155/the-directory-structure-of-the-yii-project-site/

Then try below code in modules:




'gii'=>array(

            'class'=>'system.gii.GiiModule',

            'password'=>'tt', //'Enter Your Password Here',

            // If removed, Gii defaults to localhost only. Edit carefully to taste.

            'ipFilters'=>array('127.0.0.1','::1'),

            'generatorPaths'=>array(

                'bootstrap.gii'

            ),

        ),



yes I think some defining error make change according to johnny

Thank you ! Noticed my embarrassing typo :slight_smile: :expressionless: