Reputation: 67
I have a online server with phpmyadmin. i want to use events, but i can't.
Upvotes: 0
Views: 638
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