After I downloaded phpmyadmin from my site, I extracted the create_tables.sql file from the examples folder and then imported it from the Import tab of phpmyadmin.
It creates the database "phpmyadmin" and the corresponding table inside.
This step may not be necessary, since 12 tables already exist ...
The problem was double underscore in table names.
I edited 'config.inc.php' and added another underline ( __ ) after the 'pma_' tables prefix.
t
$cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
has become
$cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
This solved the problem for me.
user2237829 May 05 '13 at 14:20 2013-05-05 14:20
source share