Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

#1142 - SELECT command denied to user ''@'localhost' for table 'pma_table_uiprefs'

Hopefully someone can help me, for I have queried the web with no success or concrete answer to this error. I’m using Windows and Xampp. Here is the error I am getting after I have recently imported the database into phpmyadmin…

#1142 - SELECT command denied to user ''@'localhost' for table 'pma_table_uiprefs' 

After I import the database, everything is fine in phpmyadmin until I log out and then log back in, this is where the problem lies. When I click on any of the tables from the imported database, I get the following errors…

SELECT 'prefs' FROM 'phpmyadmin'.'pma_table_uiprefs' WEHRE 'username' = 'root' AND 'db_name' = 'afdb' AND 'table_name' = 'role'  #1142 - SELECT command denied to user ''@'localhost' for table 'pma_table_uiprefs' 

Thank you again for taking time to read my post and hopefully someone can help me with this error.

like image 405
user1558832 Avatar asked Aug 25 '13 01:08

user1558832


1 Answers

I stumble upon this issue and I solved it just by logging out of phpMyAdmin and in again.

Click here to log out of phpMyAdmin


EXPLANATION

Take a look at the error message query:

SELECT command denied to user ''@'localhost' for table 'pma_table_uiprefs' 

This happens due to MySQL denying access to user "" (blank) at server localhost. The default setting is to block all requests from anonymous users.

By logging out we force phpMyAdmin to "forget" the current user and let us input the login credentials for the MySQL server.

like image 200
josemmo Avatar answered Oct 24 '22 03:10

josemmo