When using php-login I had the experience to be oftnen kicked out of a session. The app then performs a login with the remeber-me coockie. Which performs well, if it isn't for the user experience: work lost etc...
Read some posts on a seemingly similar problem with CakePHP:
They are speaking about security levels to be adapted, but I have the impression the solutions are not implementable with php-login.
The issue is occurring both in chrome or IE.
The session.gc_maxlifetime is set to the original 1440 (24 min), but sometimes the session even terminates in less than 6 minutes.
Did someone encounter the same problem? Or knows how to solve?
Found the answer here
In fact, the issue is a configuration problem rather than a code problem. Changed the session.cookie_lifetime to be equal to the session.gc_maxlifetime (1440). No idea why these are set differently by default.