Forum Moderators: coopster
My connect string on server likes it:
localhost
user
password
but i can't connect using such way:
www.webdomen.com
user password
Is there another way to do it?
Oh - also, the mysql server has to be configured to allow connections from that particular client.
mysql> use mysql;
mysql> select host, user from user;
+-----------+------------+
¦ host ¦ user ¦
+-----------+------------+
¦ localhost ¦ mcavic ¦
¦ localhost ¦ root ¦
+-----------+------------+
The host column should list the host name of the client you're connecting from, according to DNS. Do an nslookup of the client's ip address to get the correct name. Or use % (I think) to allow all clients.