phpmyadmin—— MySQL 返回 #1146 - Table 'phpmyadmin.pma_recent' doesn't exist错误解决方案

时间:2023-01-13 08:24:00

MySQL 返回:phpmyadmin—— MySQL 返回 #1146 - Table 'phpmyadmin.pma_recent' doesn't exist错误解决方案

#1146 - Table 'phpmyadmin.pma_recent' doesn't exist 
 
$cfg['Servers'][$i][‘recent'] = 'pma_recent';  
 
rewrite as follows:
 
$cfg['Servers'][$i]['pma_recent'] = 'pma_recent';
 
 
 

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';

重启apache,web页面登出重新进入,问题解决