Created
June 27, 2012 04:50
-
-
Save erickr/3001545 to your computer and use it in GitHub Desktop.
Extra phpMyAdmin config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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