skip to Main Content

When I’m trying to export the database, Select database, Select table or edit database details there is an error in phpmyadmin as follows,

#1146 – Table ‘phpmyadmin.pma__tracking’ doesn’t exist

enter image description here

This error occurs for all databases which I have created before as well. I’m currently using WAMP server 64bit and using Windows machine.

PS: I have already referred stackoverflow for this issue and didn’t find a solution to this problem.

I can’t even refresh phpmyadmin. There is a message as follows when I’m refreshing the site,

Error
SQL query: DocumentationEdit Edit


SELECT `comment`
            FROM `phpmyadmin`.`pma__column_info`
            WHERE db_name     = 'busresavation'
                AND table_name  = ''
                AND column_name = '(db_comment)'
MySQL said: Documentation

#1146 - Table 'phpmyadmin.pma__column_info' doesn't exist

enter image description here

2

Answers


  1. I encountered a similar problem recently with not being able to refresh phpMyAdmin and getting errors and warnings left and right. I tried many solutions posted online but at the end, I transferred to XAMPP and now everything works great. Still, don’t know what was the problem.

    Login or Signup to reply.
  2. Try to reconfigure phpMyAdmin using this command as it works many a times after reconfiguration.

    sudo dpkg-reconfigure phpmyadmin
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search