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
phpMyAdmin settings
without any problem or requirements to change configs in php my.ini or defining .htaccess file:phpMyAdmin
install path (ex. /usr/share/phpMyAdmin/ on my centos7) and find create_tables.sql
in one of its subfolders (phpMyAdmin/sql/create_tables.sql
in my 4.4.9 version.) and execute whole file contents on your current phpMyAdmin site from your web browser. This will create a database named phpmyadmin
which can keep all your phpMyAdmin options saved permanently.config.inc.php
(located on /etc/phpMyAdmin/ in my centos7 server) find the commented line $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
and uncomment it (Now phpMyAdmin will use that custom database we generated in previous step).phpMyAdmin
from web browser and goto Server >> Settings >> Features >> "Login Cookie Validity"
as in picture described by Pavnish and set the desired value. It works now.References: Niccolas Answer ,PhpMyAdmin Configuration Storage, flashMarks Answer