学习笔记

导航

 

在使用phpmyadmin时,数据库总报错#1146 - Table ‘phpmyadmin.pma_table_uiprefs' doesn't exist

 

修改phpmyadmin的配置文件config.inc.php

$cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs';

  改成:

 $cfg['Servers'][$i]['pam_table_uiprefs'] = 'pma_table_uiprefs';

 

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

$cfg['Servers'][$i][‘recent'] = 'pma_recent'; 

 

 修改phpmyadmin的配置文件config.inc.php

$cfg['Servers'][$i]['pma_recent'] = 'pma_recent';

 

 

 

posted on 2019-07-19 17:46  weizy81  阅读(950)  评论(0编辑  收藏  举报