Since I got phpMyAdmin 3.5.2.2 there is a strange problem. When I add a new column to a particular table it is not shown in the overview. This problem occurs only one table, all other are fine. Couldn't find something in the settings :/
标签:
phpmyadmin
相关问题
- Select a record just if the one before it has a lo
- while export data from phpmyadmin its return to sq
- phpmyadmin error 13 permission denied
- Storing 0.00001 in MySQL
- phpMyAdmin “Cannot load or save configuration”
相关文章
- phpMyAdmin won't let me login - no error shown
- I can not access phpMyAdmin on XAMPP
- phpmyadmin synchronize
- How to hash auto increments in mysql
- Xampp 1.8.3.3 with phpmyadmin 4.1.8 phpMyAdmin con
- MySQL give a rank to each group
- MAMP MySQL Cannot connect: invalid settings.
- Query statistic is taking 99% of the query time
Database phpmyadmin is used to store which columns are hidden, which column a table should be sorted by, etc etc. Table pma_table_uiprefs (phpmyadmin.pma_table_uiprefs) in particular has columns: username; db_name; table_name; and prefs.
I found the row in that table that matches your db_name,user_name and table_name, and deleted it. That reset the layout back to showing all columns!
The prefs column is text, and it's format could probably be deciphered if you have some spare time and energy, but deleting the row is easy and you can then adjust the layout again in phpmyadmin, and the row will be recreated in phpmyadmin.pma_table_uiprefs.
I was authenticated as root when doing this.
I have experienced this as well. (XAMPP 1.8.1, PHP 5.4.7, PMA 3.5.2.2).
Ugly method to solve this problem:
I've found a slightly less ugly answer to this problem! You can go to the "Operations" tab and copy the table to another database, and then you could drop the original table and copy back, or just switch the code. I have my database connections all set with one variable, so changing the code is really easy for me personally. Hope it helps!