1

I try to change the session timeout in php so how it's possible. and What is the default session timeout value in PHP? I work on my XAMP localhost for development everyday.

I feel annoyed by phpmyadmin auto log out out quickly. Is there any way I change the session timeout?

Where can I set this timeout value?

Hardik Chapla
  • 435
  • 6
  • 26

1 Answers1

4

Yes you can change it from php.ini file. The default is 24 minutes (1440 seconds).

Here is an link hope this link helps you. max session time

Or you can also chage it in php connection file.

ini_set('session.gc_maxlifetime', 3600); //Make it one hour