0

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.

Pekka
  • 442,112
  • 142
  • 972
  • 1,088
Paul
  • 757
  • 3
  • 10
  • 38

1 Answers1

1

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.

Community
  • 1
  • 1
Pekka
  • 442,112
  • 142
  • 972
  • 1,088