Problem with extensions

Help!

Regular gii and application are working fine. I’m using pretty URLs and an htaccess file.

Both gii-template-collection and giix extensions result in a 404 page. I’m totally stumped!

My config:




	// preloading 'log' component

	'preload'=>array('log'),


	// autoloading model and component classes

	'import'=>array(

		'application.models.*',

		'application.components.*',

		'application.extensions.*',

	),


	'modules'=>array(

		'gii'=>array(

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

			'password'=>'gii',

			'generatorPaths'=>array('ext.giix-core', 'ext.gtc'),

		),

	),


	// application components

	'components'=>array(

		'user'=>array(

			// enable cookie-based authentication

			'allowAutoLogin'=>true,

		),

		// uncomment the following to enable URLs in path-format

		'urlManager'=>array(     

			'urlFormat'=>'path',     

			'rules'=>array(

				'gii'=>'gii',

				'gii/<controller:\w+>'=>'gii/<controller>',

				'gii/<controller:\w+>/<action:\w+>'=>'gii/<controller>/<action>',

				'<controller:\w+>/<id:\d+>'=>'<controller>/view',         

				'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',         

				'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',

				),     

			'showScriptName'=>false,     

			'caseSensitive'=>false, 

		), 

		

		



Embarrassing.

Well, I found it if anyone cares :)

‘caseSensitive’=>true

fixes this problem.