Quim Serra
Quim Serra

Reputation: 67

mysql #1045 - Access denied in online server for GRANT SUPER

I have a online server with phpmyadmin. i want to use events, but i can't.

that's my problem

Upvotes: 0

Views: 638

Answers (1)

Mitch Connor
Mitch Connor

Reputation: 776

Ok, I had the same problem and I just fixed it. Try granting root permissions explicitly for the database you are using.

GRANT ALL PRIVILEGES ON ${database}.* TO 'root'@'localhost' IDENTIFIED BY '${pass}';

Upvotes: 1

Related Questions