fix
try this...
1. go to start
2.click run
3.type this:
C:\mysql\bin\mysql.exe
4.when it opens type:
use eq <-----or whatever your DB name is
5.then type:
GRANT ALL PRIVILEGES ON *.* to '%'@localhost IDENTIFIED
IDENTIFIED BY '%';
if that command doesnt work try changed localhost with 127.0.0.1 or '%' with your mysql name/password. the first '%' being your account name and the second '%' being your password
this worked for me hope it works for you
|