Resolve how to modify the default logon timeout time in phpmyadmin. After logging on to the system, the system automatically exits after being inactive for 1440 seconds. you have to log on multiple times a day. Finally, you have time to solve this problem. it seems that the session times out and the result is searched online, after finding the solution, the system always exits automatically after 1440 seconds of unactive login. you have to log on multiple times a day and finally have time to solve this problem. it seems that the session times out and the result is searched online, find a solution, hahaha. take a note here:
Phpmyadmin often encounters "login timeout (1440 seconds not active) during use. please log on again", which is annoying.
The solution is as follows:
Modify php. ini and find
Session. gc_maxlife time = 1440
Change the value to a greater value and make it take effect.
After a test, the result is poor.
Final Solution:
Find the phpMyAdmin/libraries/config. default. php file, open, modify
$ Cfg ['logincookievalidity '] = 1440;
Modify 1440 to a greater value.
Note:$ Cfg ['logincookievalidity '] cannot be greater than php. session in ini. the value of gc_maxlifetime; otherwise, "Your PHP configuration parameter session" appears in phpmyadmin. gc_maxlifetime is shorter than the cookie validity period you set in phpMyAdmin. Therefore, the validity period of your logon session is shorter than that you set in phpMyAdmin." Error.
...