This topic is locked

Increase Logged in Time

2/12/2008 8:54:43 PM
PHPRunner General questions
S
scottw author

Hi
I was Just wondering how I can increase the time a user is logged in before they are automatically logged out.
Thanks
Scott

Alexey admin 2/13/2008

Scott,
you should increase session timeout value for this.

Either increase session.gc_maxlifetime PHP option in C:\Windows\php.ini file at your server or add this line to the very beginning of generated include\dbcommon.php file:

ini_set("session.gc_maxlifetime","3600");



Add this line just after <?php line.