I have integrated gii module in my My config file
'modules' => array(
'gii' => array(
'class'=>'system.gii.GiiModule',
'password'=>'pick up a password here',
'generatorPaths' => array(
'vendor.cornernote.gii-prefixmodel-generator',
),
),
),
'urlManager'=>array(
'urlFormat'=>'path',
'rules'=>array(
'gii'=>'gii',
'gii/<controller:\w+>'=>'gii/<controller>',
'gii/<controller:\w+>/<action:\w+>'=>'gii/<controller>/<action>',
),
),
I accessed gii by using the following URl.
http://local_host/_demo/index.php/gii/
I have got an output
You are not allowed to access this page.
Please help me