I’m running phpmyadmin in my dev server and i always encounter phpmyadmin timeout after 1440 seconds.
To disable the phpmyadmin timeout after 1440 seconds, follow the steps below:-
Advertisements
- Open your config.inc.php file from your phpmyadmin folder, if you do not have one, you can copy the config.sample.inc.php to config.inc.php in your phpmyadmin folder.
- Now look for this code:-
$cfg['Servers'][$i]['auth_type'] = 'cookie';
and change to
$cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['user'] = 'your-database-user-name'; $cfg['Servers'][$i]['password'] = 'your-database-password';
- Once done, save the file and you may refresh you phpmyadmin. and phpmyadmin will auto login for you.
*** DO NOT DO THIS IN YOUR PRODUCTION ENVIRONMENT ***
Related posts:
How to setup multiple identities in Thunderbird?
WordPress: How to open rss links in new window?
How to disable directory browsing using .htaccess - Apache Web Server
Prestashop 1.6: How to enable Catalog mode?
Prestashop 1.6: "Unexpected token <" error when upload category thumbnail
Symfony: PHP Fatal error: Call to a member function setData()
How to hide .svn folders in Eclipse or Aptana
How to whitelist email address in Google App Mail (Free Edition)
Share this with your friends:-