Admin-Ahead Community

General Category => General Discussion => Topic started by: lathu_official on December 28, 2013, 12:46:00 pm

Title: phpmyadmin logs out after 1440 seconds - how to increase this time
Post by: lathu_official on December 28, 2013, 12:46:00 pm
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