Problem module

Hiii guys,

i can’t install this module: https://github.com/TXGruppi/syte-yii

I follow all steps but i get: <<page not found>> when i try: http://localhost/your_web_app/?r=syte

But http://localhost/your_web_app/ works.

This is my main.php configurations:

[i]return array(

'import' =&gt; array( 


    'application.components.*',


    'application.modules.syte.*',


),


'components' =&gt; array(


    'syte' =&gt; array(


        'class' =&gt; 'syte.components.SyteApplicationComponent',


    ),


),


'modules' =&gt; array('syte')

);[/i]

Why this isn’t works?

Thanksss

Just try it by adding


'modules'=>array('syte'=>array('install'=>true));

Nope, same error :(

You may getting execution time extended error I think…If so…

First remove  [color=&quot;#FF0000&quot;]'application.modules.syte.*',[/color] .....Then try....Here's a working config for it....




return array(

	'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',

	'name'=>'My Web Application',


	// preloading 'log' component

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


	// autoloading model and component classes

	'import'=>array(

		'application.models.*',

		'application.components.*',

	),


	'modules'=>array(	

		'syte',

	),


	// application components

	'components'=>array(

 		'syte' => array(

     		        'class' => 'syte.components.SyteApplicationComponent',

  		),

	),

);