PhpMyAdmin error with config file

前端 未结 8 1372
庸人自扰
庸人自扰 2021-01-01 16:26

Errors are:

The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click

8条回答
  •  爱一瞬间的悲伤
    2021-01-01 16:47

    If you are using "create_tables.sql" to create the database and tables, change the tables name pma__ to pma_ . (change 2 underscore to 1 underscore)

    Or change the tables name in "config.inc.php", pma_ to pma__ (change 1 underscore to 2 underscore).
    For example, pma_bookmark to pma__bookmark

    $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]['tracking'] = 'pma__tracking';
    $cfg['Servers'][$i]['designer_coords'] = 'pma__designer_coords';
    $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
    $cfg['Servers'][$i]['recent'] = 'pma__recent';
    $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
    

提交回复
热议问题