Using local PhpMyAdmin to access MySql database remotely hosted on GoDaddy
1. Log in to GoDaddy account and launch the hosting control panel 2.Goto the Databases ->MySQL database 3. Click the Action edit button and check the database detail. It looks like 4. Open the PhpMyAdmin in In GoDaddy. 5. From the GoDaddy PhpMyAdmin window, find the TCP/IP value in line. The TCP IP value will be used in the PhpMyAdmin configuration Server: xxx.db.3695964.hostedresource.com (173.201.88.100 via TCP/IP) 6. In the folder where Phpmyadmin installed , find the file config.inc.php and open it. 7. Find the server configuration section as following /* * Servers configuration */ $i = 0; /* * First server */ $i++; /* Authentication type and info */ $cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = ''; $cfg['Servers'][$i]['AllowNoPassword'] = true; /* Server...