How to solve time out in phpmyadmin?

If even after repeated upload you still get timeout error, pleasechange your settings in \phpmyadmin\libraries\config.default.php from $cfg[‘ExecTimeLimit’] = 300; to $cfg[‘ExecTimeLimit’] = 0; and restart. Now there is no execution time limit (trust we are talking about local server). Source : Change Script time out in phpmyadmin

phpmyadmin automatic logout time

Changing php.ini will change the session duration for all the websites running on the server. To change it just for PhpMyAdmin, open config.inc.php and add: $sessionDuration = 60*60*24*7; // 60*60*24*7 = one week ini_set(‘session.gc_maxlifetime’, $sessionDuration); $cfg[‘LoginCookieValidity’] = $sessionDuration;

Create a root password for PHPMyAdmin

Open phpMyAdmin and select the SQL tab. Then type this command: SET PASSWORD FOR ‘root’@’localhost’ = PASSWORD(‘your_root_password’); Also change to this line in config.inc.php: $cfg[‘Servers’][$i][‘auth_type’] = ‘cookie’; To make phpMyAdmin prompts for your MySQL username and password.

SQL: deleting tables with prefix

You cannot do it with just a single MySQL command, however you can use MySQL to construct the statement for you: In the MySQL shell or through PHPMyAdmin, use the following query SELECT CONCAT( ‘DROP TABLE ‘, GROUP_CONCAT(table_name) , ‘;’ ) AS statement FROM information_schema.tables WHERE table_name LIKE ‘myprefix_%’; This will generate a DROP statement … Read more

#1142 – SELECT command denied to user ”@’localhost’ for table ‘pma_table_uiprefs’

I stumble upon this issue and I solved it just by logging out of phpMyAdmin and in again. EXPLANATION Take a look at the error message query: SELECT command denied to user ”@’localhost’ for table ‘pma_table_uiprefs’ This happens due to MySQL denying access to user “” (blank) at server localhost. The default setting is to … Read more