Hi for some reason my app will not logout after the authTimeout or absoluteAuthTimeout has passed. Can anyone suggest what the issue might be?
Here is the code in my module:
Yii::app()->setComponents(array(
'errorHandler' => array(
'errorAction' => 'codes/default/error',
),
'user' => array(
'class' => 'CWebUser',
'stateKeyPrefix' => '_codes',
'allowAutoLogin'=>true,
'authTimeout'=>20,
'absoluteAuthTimeout'=>40,
'loginUrl' => Yii::app()->createUrl('codes/default/login'),
),));