Wednesday, August 20, 2014

fix phpmyadmin error #1146



For some reason in xampp  version 1.8.3-3 in default installation you will face error #1146 ('phpmyadmin.pma_table_uiprefs' doesn't exist) when trying to query table in phpmyadmin.

  phpmyadmin_error_#1146_query_table

 To solve this issue : A. you can run  create_tables.sql inside "phpMyAdmin\examples" folder OR B. comment the advanced features settings 1. Find these lines in config.inc.php and comment them
/* User for advanced features */
//$cfg['Servers'][$i]['controluser'] = 'pma';
//$cfg['Servers'][$i]['controlpass'] = '';

/* Advanced phpMyAdmin features */
//$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
//$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
//$cfg['Servers'][$i]['relation'] = 'pma_relation';
//$cfg['Servers'][$i]['table_info'] = 'pma_table_info';
//$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
//$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
//$cfg['Servers'][$i]['column_info'] = 'pma_column_info';
//$cfg['Servers'][$i]['history'] = 'pma_history';
//$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
//$cfg['Servers'][$i]['tracking'] = 'pma_tracking';
//$cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
//$cfg['Servers'][$i]['recent'] = 'pma_recent';
//$cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs';


2. restart apache

http://suki.noip.me/ifelse/fix-phpmyadmin-error-1146/

No comments:

Post a Comment