在使用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‘;
#1146 - Table 'phpmyadmin.pma__table_uiprefs' doesn't exist
原文地址:https://www.cnblogs.com/kangleweb/p/11214739.html
时间: 2024-10-15 06:36:53