Posts

Showing posts from July, 2012

xampp mysql remote access

To allow remote connections to mysql server on windows follow the steps below: 1) Login to mysql server through command line and execute the following query:  GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY 'password'; 2) open the my.ini located inside the folder "C:\xampp\mysql\bin"     uncomment the line and replace 127.0.0.1 to           bind-address 0.0.0.0