In my local development Ubuntu box I use MySQL and phpmyadmin to work with the database.
Whenever phpmyadmin is idle for 1440 secs (24min) the session expires. I lose m
You just Increase the phpMyAdmin Session Timeout, open config.inc.php in the root phpMyAdmin directory and add this line.
from the wamp folder path wamp\apps\phpmyadmin4.0.4\config.inc.php
$cfg['LoginCookieValidity'] = ;
Example
$cfg['LoginCookieValidity'] = '1440';
Note: short cookie lifetime is all well and good for the development server not for your production server.