Warning sign/exclamation point in red circle next to table names and Query tab?

筅森魡賤 提交于 2019-12-23 08:29:36

问题


I have a VPS with CENTOS 6.4 and WHM 11.38.2. I just updated WHM to the latest version, and now when I go to phpMyAdmin there are red circles with white exclamation points in them next to the table names and before the word "Query" in the Query tab.

The warning signs are kind of stupid, because there's no message when I hover over them and they aren't clickable. Searching the web and on here for these warning signs didn't produce any results.

What do these warning signs mean, and what should I do to fix whatever issue exists?

UPDATE:

I've been messing around with phpMyAdmin and there's definitely something wrong. When I click on a database name, the tables no longer show in the left pane.


回答1:


The first description sounds like you have stale icons in your cache. You can solve that by clearing your web browser cache.

About your second problem (after "UPDATE:"), what phpMyAdmin version are you using?




回答2:


About the second problem:

Re-run create-tables.sql

sudo updatedb
locate create-tables.sql

Located at /usr/share/doc/phpmyadmin/examples/create_tables.sql.gz for me.

cd ~
cp /usr/share/doc/phpmyadmin/examples/create_tables.sql.gz .
gunzip create_tables.sql.gz

Run the resulting create_tables.sql (just through phpmyadmin is fine).

Check phpmyadmin access

Check the phpmyadmin config file: /etc/phpmyadmin/config-db.php (on ubuntu) for the database password. Make sure the phpmyadmin user in mysql has the right password, and all rights on the phpmyadmin database.

Log out and back in to phpmyadmin, and the problem should be fixed



来源:https://stackoverflow.com/questions/18211323/warning-sign-exclamation-point-in-red-circle-next-to-table-names-and-query-tab

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!