Reputation: 777
I am fairly new to PHP and am running an open source web application called GLPI. We have several users that have the application open all day long and after a while they have to log back on the application. Is this the Apache session timing out? If so what is the default and how do I change it.
Upvotes: 0
Views: 422
Reputation: 449395
It's most likely the PHP session's lifetime.
Questions with solutions that might help you:
it's impossible to tell where in your application you need to change or add this without knowing it, but you may be able to change the session.gc_maxlifetime
setting in php.ini without touching the application at all.
Upvotes: 1