0

I have this same problem as here phpMyAdmin reports 'No Privileges'

However mine doesn't seem to be a cache issue, I've tested it on several browsers, uninstalled and re installed EasyPHP no luck.

I keep seeing a possible solution as

GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost';

FLUSH PRIVILEGES;

However I have no idea where to insert this line. If someone can give me a step by step guide, this will be very much appreciated!

Community
  • 1
  • 1
Mayowa
  • 143
  • 2
  • 11

1 Answers1

0

You can execute that line in the query browser to grant access.

Bryan
  • 1,245
  • 5
  • 22
  • 37
  • Simply entering that in the query browser, I get this: 'Error SQL query: GRANT ALL PRIVILEGES ON * . * TO 'root'@'localhost'; MySQL said: Documentation #1045 - Access denied for user ''@'localhost' (using password: YES) ' – Mayowa Dec 16 '11 at 07:50