Reputation: 129
I have been searching the web and all over stackoverflow, but yet couldn't find my answers.
My client has created an online mysql database with phpmyadmin installed. I use a url like (http://domainName.com/folder1/index.php) to access the database tables and settings.
Now my problems are:
Thanks in advance.
Upvotes: 1
Views: 805
Reputation: 2873
Just do this...
Edit the "config.inc.php" file by finding the line that starts with...
$cfg['Servers'][$i]['host'] = '';
and change it to have the network address of the database.
$cfg['Servers'][$i]['host'] = '127.0.0.1';//127.0.0.1 is just localhost IPv4
Upvotes: 1