I'm just learning Zend Framework following it's official documentation at the website.

But I'm stucked with a strange behavior of Zend_Session: when user is authenticated, surfing the application pages - everything is ok but if he refresh the browser page quickly (pressing F5 or button in the toolbar) or even if some AJAX php file (that uses session) is requested multiple times, - the session suddenly expires (user is unauthenticated, however cookies expire dates are the same).

Though, I'm not using ACL and MVC structure in my application.

So it works and it is very simple but fails when page is refreshed quickly. Also I don't know why but a separate cookie file is created in /home/user/sessions/ for each page user has visited.

There is a similiar question here zend session expires when refreshed many times but the solution provided doesn't help me :(

link|improve this question
feedback

2 Answers

In you config, you should set up something like this:

;; ========================= Session ===========================================
resources.session.save_path = APPLICATION_PATH "/../data/session"
resources.session.name = "SESSION"
resources.session.gc_maxlifetime =  5184000
resources.session.gc_probability = 1
resources.session.gc_divisor = 1000
resources.session.remember_me_seconds = 5184000
resources.session.cookie_lifetime = 5184000

That should do it.

link|improve this answer
feedback

I have discovered that reason for this issue was using of Zend_Session::rememberMe() method. Without using it, everything works well. Try it yourself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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