摘要:PHP - phpmyadmin pma_table_uiprefs doesn't exist
竟然玩phpmyadmin 會出現這個問題
https://yuvrajingale.wordpress.com/2013/05/28/1146-table-phpmyadmin-pma_table_uiprefs-doesnt-exist/
解決方法如文章所說。
將
$cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs';
改為
$cfg['Servers'][$i]['pma_table_uiprefs'] = 'pma_table_uiprefs';
就解決問題了。