This is my first Stack Overflow post ever. Hurah for me 🙂
phpMyAdmin 4.9.1. How can I change connection timeout? For now it’s 1440 seconds.
Settings/Fuatuers/General dosen’t show option “Login cookie validity”.
OS: MacOS Catalina 10.15.1 (19B88)
Google Chrome Version 78.0.3904.97 (Official Build) (64-bit)
Thanks for your help.
4
Answers
in phpmyadminlibrariesconfig.default.php change
to
and restart – this will clear the limit
try to add the line $cfg[‘LoginCookieValidity’] = ‘7200’ ; into config.inc.php file in PhpMyAdmin directory
this is for two hours
in phpmyadminlibrariesconfig.default.php change
to
to make session logout after 2 Hours.
If you’re using phpMyAdmin in a DOCKER container:
TERMINAL
and list your docker containers in order to find out thephpmyadmin
one:bash
in the chosen container:vim editor
in order to change the file that have the timeout variable. Execute that:config.default.php
:$cfg['LoginCookieValidity']
from1440
to28800
(8 hours):To find out the variable on
vim
, press/
and typeLoginCookieValidity
Before:
After: