phpMyAdmin正在查找错误的数据库中的PMA_Tracking等

时间:2015-05-09 14:40:23

标签: php mysql phpmyadmin

我最近做了一些愚蠢的事情,然后将其与另一个白痴行动混为一谈,现在我被卡住了。

我允许phpMyAdmin在我正在处理的重要数据库中创建它的表。当然是个傻瓜,我惊慌失措,放弃了桌子。现在尽管有一个vanilla配置文件没有提到数据库并删除了所有phpMyAdmin文件并再次解压缩它们仍然收到有关错误数据库中不存在的表的错误消息。

根据#1146 - Table 'phpmyadmin.pma_recent' doesn't exist我已经导入了make table SQL,但这没有帮助。

我不能,为了我的生活,弄清楚phpMyAdmin写了什么以及在哪里使这个问题如此持久,但我开始放松我的酷......

如何让它看起来在正确的位置?我已经更新了config.inc.php并且直接告诉它在哪里查看并且仍然想要使用我正在尝试为我的项目构建的数据库。

 /* Advanced phpMyAdmin features */
 $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
 $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
 $cfg['Servers'][$i]['relation'] = 'pma_relation';
 $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
 $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
 $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
 $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
 $cfg['Servers'][$i]['history'] = 'pma_history';
 $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
 $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
 $cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
 $cfg['Servers'][$i]['recent'] = 'pma_recent';
 $cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs';

我想错过什么让它想要查看MyOtherDB

1 个答案:

答案 0 :(得分:3)

完全相同的事情发生在我身上:0)我发现设置存储在cookie中。只需使用我们的浏览器检查工具即可删除所有pma_ * cookies。