0
Check the following for more details about the error you get:
http://dev.mysql.com/doc/refman/5.1/en/access-denied.html
You must most likely grant proper access for the user at the given IP address/host name. Such as:
grant on . to ''@'';
Check the users guide which specific privileges and what target objects to grant. The important clause above is that you need to specify 'user'@'ip-address'.
Again, check the users guide as there may be a collection of reasons for the error you get.
0
Check the following for more details about the error you get:
http://dev.mysql.com/doc/refman/5.1/en/access-denied.html
You must most likely grant proper access for the user at the given IP address/host name. Such as:
grant on . to ''@'';
Check the users guide which specific privileges and what target objects to grant. The important clause above is that you need to specify 'user'@'ip-address'.
Again, check the users guide as there may be a collection of reasons for the error you get.