Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: phpmyadmin logs out after 1440 seconds - how to increase this time  (Read 2890 times)

0 Members and 1 Guest are viewing this topic.

lathu_official

  • Guest
This notification is displayed "No activity within 1440 seconds; please log in again"

 If it logs out check session.gc_maxlifetime in your /etc/php.ini

Default session maximum lifetime is 1440 seconds, if u r increase this time, open /etc/php.ini file and search

session.gc_maxlifetime = 1440 (default in php.ini file)

session.gc_maxlifetime = 86400 (means 24 hours)

 #vim  /etc/php.ini
 
   session.gc_maxlifetime = 86400

:wq (save&quit)

After change, Restart the Webserver

#service httpd restart

Its working


---
Thnxx