vote up 0 vote down star

I've had this problem in a couple of ZF applications now and it's very frustrating:

Near the top of my bootstrap I have the following two lines

Zend_Session::start();
Zend_Session::regenerateId();

My application requires authentication using Zend_Auth and uses default session storage for persisting an identity. At random the session is lost giving the effect that the user has logged out. If I remove the call to Zend_Session::regenerateId() the session is not lost.

Regenerating the session id increases security so I'd like to get this working. This problem occurs on both my local development server (windows) and our staging server (linux)

flag

Are you using Zend_Cache_Frontend_Page with non-default parameters? – vartec Apr 3 at 11:41
No caching is used at all – David Caunt Apr 3 at 12:44

1 Answer

vote up 2 vote down check

Hi dcaunt,

After reading your question i have been looking for a solution to your problem. Actually according to Zend Framework: Documentation the solution is quiet easy.

"If a user has successfully logged into your website, use rememberMe() instead of regenerateId()."

I hope this will help you out.

Greetings,

Younes

[edit: this is the link of where i found this: Zend Framework: Documentation

link|flag
Seems to work - I had read the docs and not acknowledged its relevance. Looking at the source code, I don't know why it works - it seems to just call regeneratedId after setting a session expiry date/time. Many thanks – David Caunt Apr 3 at 13:00

Your Answer

Get an OpenID
or

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