Page 2 of 2

Re: phpmyadmin increase timeout limit

Posted: Thu 27. May 2021, 23:11
by Szektor
Sorry, I meant logout instead of timeout.

Re: phpmyadmin increase timeout limit

Posted: Fri 28. May 2021, 09:59
by Alexander

Re: phpmyadmin increase timeout limit

Posted: Fri 25. Jun 2021, 07:22
by Szektor
The link runs to a 404 but I guess you wanted to send me this:
https://www.hostwinds.com/tutorials/inc ... phpmyadmin

However what I would like to achieve is to change this value for all new/existing users by default.

Re: phpmyadmin increase timeout limit  [SOLVED]

Posted: Fri 25. Jun 2021, 09:34
by Alexander
There was a .gif at the time I send my answer, but they changed it ;).

You can also put the following into the config file /home/keyhelp/www/phpmyadmin/config.inc.php
Changing the time accordingly to your needs.

Code: Select all

ini_set('session.gc_maxlifetime', <TIME>);
$cfg['LoginCookieValidity'] = <TIME>;
However, this config file may be overridden by a KeyHelp update. Do not set this file immutable, as it may break the phpMyAdmin update.

Alternatively use an own instance of phpMyAdmin which you install somewhere on your server an adjust the "Configuration -> Tools -> Database-Administration -> Access URL" to the URL of your phpMyAdmin instance and configure it the way you want.

Re: phpmyadmin increase timeout limit

Posted: Wed 7. Jul 2021, 11:15
by Szektor
Thank you. This is exactly what I was looking for. :)))