Extend phpMyAdmin time out
[How To]
Here you are :
- Go find phpmyadmin's config.inc.php
Ubuntu version (from repo/ not lampp)$ sudo gedit /etc/phpmyadmin/config.inc.php
- Add these lines to the bottom of the file
$cfg['LoginCookieValidity'] = 60*60*24; ini_set('session.gc_maxlifetime', $cfg['LoginCookieValidity']);
- Restart apache
$ sudo service apache2 restart
- Done and continue your work :D
Note : if with above trick, still doesn't work, try to edit /etc/phpmyadmin/config.inc.php file, then search for
$cfg['Servers'][$i]['auth_type'] = 'cookie';then edit / add the following
$cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['user'] = 'your_mysql_username'; $cfg['Servers'][$i]['password'] = 'your_mysql_password';