#1146 - Table 'phpmyadmin.pma__table_uiprefs' doesn't exist
作者:互联网
在使用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';
标签:__,phpmyadmin,uiprefs,cfg,pma,table,recent 来源: https://www.cnblogs.com/kangleweb/p/11214739.html