i have php myAdmin installed on my machine how can make it connect to external server database
Thanks in advance
|
i have php myAdmin installed on my machine how can make it connect to external server database Thanks in advance |
|||
|
|
|
In the config file, change the "host" variable to point to the external server. The config file is called
Just change Note: you may have to configure the external server to allow remote connections, but I've done this several times on shared hosting so it should be fine. |
|||||||||
|
|
To set up an external DB and still use your local DB, you need to edit the config.inc.php file:
The file is roughly set up like this:
What you need to do is duplicate the "your local db setup" by copying and pasting it outside of the
You can leave the defaults (unless you know you need to change them) Save and refresh your PHPMYADMIN login page and a new dropdown should appear. You should be good to go. EDIT: if you want to give the server a name to select at login page, rather than having just the IP address to select, add this to the server setup:
It's good if you have multiple server configs. |
||||
|
|