Find the config.inc.php file in your phpMyAdmin directory and open it with DW (note that you can't open it with Notepad, if it's a uft8 encoded file, you're afraid of a problem)
Found it
' localhost ' after [' host '] changed to remote database IP
| The code is as follows |
Copy Code |
$cfg [' Servers '] [$i] [' host '] = ' 192.168.1.10 '; |
Note: 192.168.1.10 is the IP of the remote database
Finally restart MySQL, the command mode is as follows
After the change---Start menu----run----cmd (carriage return)----net stop MySQL (carriage return)--------net start MySQL (carriage return)
If you do not command the method we can go to the computer's service console, and then the application server found Mysql.exe can be restarted.
http://www.bkjia.com/PHPjc/628930.html www.bkjia.com true http://www.bkjia.com/PHPjc/628930.html techarticle find the config.inc.php file in your phpMyAdmin directory and open it with DW (note that you can't open it with Notepad, if it's a UFT8 encoded file) Find [' Host '] after ...