Skip to content

Instantly share code, notes, and snippets.

@erickr
Created June 27, 2012 04:50
Show Gist options
  • Save erickr/3001545 to your computer and use it in GitHub Desktop.
Save erickr/3001545 to your computer and use it in GitHub Desktop.
Extra phpMyAdmin config
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = '';
$cfg['Servers'][$i]['password'] = '';
/* Server parameters */
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['port'] = '3307';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment