phpmyadmin configuration to quicky login to phpmyadmin as mysql root user, use this only for development server which is not publicly available

copy config.sample.inc.php to config.inc.php

change configuration options at the beginning to:

/*
 * First server
 */
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'config';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = true;

$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';

// do not group tables
$cfg['NavigationTreeEnableGrouping'] = false;