Session Timeout Not going to Login

I am setting the session variable in the components array with a class of CDbHttpSession and timeout of 60. The session seems to timeout as I can no longer access items on the web page without errors due to missing session data, but it is never re-directed to the login page. Where is this re-direction url set??

Hi

The loginUrl is used in CWebUser which you can configure in your application configuration:




//...

'components'=>array(

        'user'=>array(

                  'loginUrl' => array('site/login'),

         ),

 )

//...