Created
February 14, 2012 19:50
-
-
Save jcsrb/1829655 to your computer and use it in GitHub Desktop.
setup phpMyAdmin on shared hosting
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
$cfg['Servers'][$i]['host'] = 'localhost'; //or diferent | |
$cfg['Servers'][$i]['user'] = 'username'; | |
$cfg['Servers'][$i]['password'] = 'password'; | |
$cfg['Servers'][$i]['only_db'] = array('databasename'); // if the user can't list databases | |
$cfg['PmaAbsoluteUri_DisableWarning'] = TRUE; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment