Citation :
$cfgPmaAbsoluteUri = 'http://seremify.nukeelite.com/phpmyadmin/';
Set the URL of where-ever you are putting phpMyAdmin here. Make sure to include the full path with the / at the end otherwise it won't work. This is probably the most important part so make sure its right! Also note - put your site address between the parenthesizes (the ' and the other ' otherwise again it will not work. Leave the ; there as it is there for a reason. In case you also didn't notice this; I am installing it to my test site (seremify.nukeelite.com) under the subdirectory phpmyadmin.
$cfgServers[1]['host'] = 'localhost'; // MySQL hostname
$cfgServers[1]['port'] = ''; // MySQL port - leave blank for default port
$cfgServers[1]['socket'] = ''; // Path to the socket - leave blank for default socket
Thos two lines should be left alone but if it does not work; try setting the localhost to your actual server address and then it might work better. Also, the default port setting is 3306 which usually works but if yours is different and you know it (or you've had problems) then try changing it and remember to put it between the ' and the other '.
$cfgServers[1]['user'] = 'seremify'; // MySQL user
$cfgServers[1]['password'] = 'password'; // MySQL password (only needed with basic auth)
Obviously you put your username and password in here. Between the two ' ' again. This way when you get there it will automatically log you in. Also note if you wish to make it so it won't log you in automatically, change the setting for advanced authentication.
$cfgServers[1]['adv_auth'] = FALSE; // Use advanced authentication?
That is the advanced authentication setting. Change the word false into true to require you to enter in your login details (and server details) every time you want to check your database. This is obviously much more safer than if you leave it as open. Also note that if you use Advanced Authentication, do not enter your password into the password section of the configuration file (below the username). Remove it. Leave the username there though. When you've set it properly it should look like this;
$cfgServers[1]['adv_auth'] = TRUE; // Use advanced authentication?
Make sure you set all the details in the ones marked $cfgServers[1] as the other ones refer to other 'bookmark's. Don't worry about them.
Like I said before, the rest of the stuff isn't that important but can be changed to suit yourself - its easier just to leave it as it leaves less of a chance for it to stuff up.
|