up vote 0 down vote favorite
share [g+] share [fb]
  1. How can I figure out when my current session will run out?
  2. Is the session timeout updated on every request?
link|improve this question

51% accept rate
feedback

1 Answer

You can find out the answer to the first question by looking in your configuration file in 'app/config/core.php'. It depends on how you've configured your setup. As for the second question, it will update on every page refresh. Config File Info

link|improve this answer
// Actual value depends on 'Security.level' setting. Configure::write('Session.timeout', HOUR); What does this mean to me? – powtac Nov 26 '09 at 22:50
The higher the level, the higher it will multiply your timeout value. More information here: book.cakephp.org/view/44/CakePHP-Core-Configuration-Variables – Dave Nov 26 '09 at 22:52
The higher the security the longer my session will last??? – powtac Nov 26 '09 at 22:53
Yes. So if you set Session.timeout to 1000, then security will multiply that value depending on security. So, high = 1000x10, medium = 1000x100, low = 1000x300 – Dave Nov 26 '09 at 22:54
No, sorry. My mistake, the lower your security. The longer your session will last. My mind completel died. – Dave Nov 26 '09 at 22:55
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.