Issue
I have wrote a simple program which uses MySQL db server of XAMPP. Program works fine when I connect to 'localhost':
But when I try connect a MySQL db from another computer (in my LAN):
it gives below error:
But I can connect to that 'phpmyadmin' from browser:
(or Can it be that the computers which I'm testing are domain members ?)
Solution
Actually the problem was, MySQL server settings has set to work only for local connections (by default):
So, then I uncommented the second line and chanded to:
And it worked. '127.0.0.1' means localhost and '0.0.0.0' means any host
Answered By - Gamer In The Game Answer Checked By - David Marino (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.