The phpMyAdmin configuration storage is not completely confi

A

Anonymous

Guest
Do you have 'phpmyadmin' database and tables* inside it on your mysql server?
If you're on localhost, to sure you should check it via file system, database files are stored on mysql\data folder.

Do you really need those features so much? If you just don't want so see that error, you could just comment out these lines
PHP:
$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'; 
these features aren't important

* Tables:
pma_bookmark
pma_relation
pma_table_info
pma_table_coords
pma_pdf_pages
pma_column_info
pma_history
pma_tracking
pma_designer_coords
pma_userconfig


PMA Config/Servers
 
You know, I'm not ESP.
You should know where you installed your mySQL server.

If you installed WAMP/LAMP separately, search for a place where you installed mySQL.
If you installed packages like EasyPHP, WampServer, etc. Mysql folder should be in package installation folder.
 
Back
Top