Usergroups Extension Not Working

I am first time user of yii framework and I have installed usergroups extension. Even after following all installation steps the usergroups extension is not working. Also by enabling URLmanger settings from main.php file my website links are broken. So when I type localhost/mywebapp/userGroups/install it just object not found error. Can anyone help me?

sure post your error

Hi, im having the same problem as well. Here’s my code in [color="#FF0000"]config/main.php[/color]:




...

'modules'=>array(

		// uncomment the following to enable the Gii tool

		'userGroups'=>array(

        // accessCode can be changed

        'accessCode'=>'123456',

        // salt can be changed

        'salt'=>'123456',

           ),

		'gii'=>array(

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

			'password'=>'abc',

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

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

		),

		

	),


	// application components

	'components'=>array(

		'user'=>array(

			// enable cookie-based authentication

			'allowAutoLogin'=>true,

			//'class'=>'userGroups.components.WebUserGroups',

		),

		'email'=>array(

            'class'=>'application.extensions.KEmail.KEmail',

            'host_name'=>'smtp.gmail.com',

            'user'=>'admin@gmail.com',

            'password'=>'******',

            'host_port'=>465,

            'ssl'=>'true',

        ), 

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

		

		'urlManager'=>array(

			'urlFormat'=>'path',

			'rules'=>array(

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

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

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

			),

			    'showScriptName'=>false,

		),



when i type localhost/webapp/userGroups, it returns error of ‘Object not found!’. Anyone can help me?? thanks in advance.