Reputation: 81
When i am trying to create a new user in my PhpMyAdmin. It says user is created, but after that this error is coming:
The selected user was not found in the privilege table
and I am not able to see all my created users in database. Please help me to get out of it :).
Upvotes: 4
Views: 4275
Reputation: 29
If you deleted a row from the mysql table you need to run FLUSH PRIVILEGES, if not the user hasn’t really been removed.
Try flush privileges;
under the SQL tab in PhpMyAdmin.
Upvotes: 1