Yii 1.1.14 absoluteAuthTimeout

334 Views Asked by At

I download 1.1.14,and try it , get a question about user authTimeout Any one can help me? When i used the configration like this:

'comments'=array(
`user`=array(
...
'absoluteAuthTimeout' => 60*100,
...

and logined, but ,click user pannel at once , it logout auto.

Regards

1

There are 1 best solutions below

3
On BEST ANSWER

You can implement Session Timeout in the config file like

'components' => array(
   'session' => array(
      'timeout' => 300,
   ),
),