schmunk42/gii-template-collection

Unable to resolve the request "gii/fullCrud/index".

snkhan120 opened this issue · 3 comments

After configuration, when i click on fullCrud
its showing error.

http://localhost/ms/gii/fullCrud/index

Error 404
Unable to resolve the request "gii/fullCrud/index".

@uldisn its redirect to localhost root, mean not working

mine config.php

dirname(**FILE**).DIRECTORY_SEPARATOR.'..', 'name'=>'HRMS', ``` // preloading 'log' component 'preload'=>array('log'), // autoloading model and component classes 'import'=>array( 'application.models.*', 'application.components.*', 'application.modules.user.models.*', 'application.modules.vehicles.models.*', 'application.modules.factory.models.*', 'application.modules.mobiles.models.*', 'application.modules.salary.models.*', 'application.ext.gii-template-collection-develop.components.*', //'ext.gii-template-collection-develop.*', ), 'timeZone' => 'Asia/Karachi', 'theme'=>'sdadmin', 'modules'=>array( 'vehicles', //'units', 'factory', 'mobiles', //'salary', // uncomment the following to enable the Gii tool 'gii'=>array( 'class'=>'system.gii.GiiModule', 'password'=>'123', 'generatorPaths'=>array( //'ext.gtc', // Gii Template Collection 'ext.gii-template-collection-develop', ), // If removed, Gii defaults to localhost only. Edit carefully to taste. //'ipFilters'=>array('127.0.0.1','::1'), ), 'user' => array( 'debug' => true, //'registrationUrl' => array('/user/user/create'), ), ), // application components 'components'=>array( 'user'=>array( // enable cookie-based authentication //'debug' => true, 'loginUrl' => array('/user/user/login'), //'registrationUrl' => array('/user/user/create'), 'allowAutoLogin'=>true, ), // uncomment the following to enable URLs in path-format 'urlManager'=>array( 'urlFormat'=>'path', 'showScriptName'=>false, 'caseSensitive'=>false, 'rules'=>array( ''=>'mobiles', '/'=>'/view', '//'=>'/', '/'=>'/', ), ), // database settings are configured in database.php 'db'=>require(dirname(__FILE__).'/database.php'), /*'db'=>array( 'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db', // uncomment the following lines to use a MySQL database 'connectionString' => 'mysql:host=127.0.0.1;dbname=hrms_new_2', 'emulatePrepare' => true, 'username' => 'root', 'password' => '', 'charset' => 'utf8', ),*/ 'errorHandler'=>array( // use 'site/error' action to display errors 'errorAction'=>'site/error', ), 'log'=>array( 'class'=>'CLogRouter', 'routes'=>array( array( 'class'=>'ext.yii-debug-toolbar.YiiDebugToolbarRoute', 'class'=>'CFileLogRoute', 'levels'=>'error, warning, trace', 'categories' => 'system.db.CDbCommand', 'logFile' => 'db.log', ), // uncomment the following to show log messages on web pages /* array( 'class'=>'CWebLogRoute', ), */ ), ), ), // application-level parameters that can be accessed // using Yii::app()->params['paramName'] 'params'=>array( // this is used in contact page 'adminEmail'=>'webmaster@example.com', ), ``` );

What's about http://localhost/ms/gii/?