php - PHPMYADMIN ,,Error in Processing Request Error code: 200 Error text: OK -


using phpmyadmin php , mysql stack in ubuntu encounter problem:

1146 – table ‘phpmyadmin.pma_table_uiprefs’ doesn’t exist

to solve added:

$ cfg [‘servers’] [$ i] [‘table_uiprefs’] = ‘pma_table_uiprefs'; 

changed to:

$ cfg [‘servers’] [$ i] [‘pma__table_uiprefs’] = ‘pma__table_uiprefs'; 

in config.inc.php file after i've got problem like:

error in processing request

error code: 200

error text: ok

how can solve this?

looks config has been modified put in /var/www/phpmyadmin/config.inc.php , change password below if set else blank

$cfg['blowfish_secret'] = 'a8b7c6d'; /* must fill in cookie auth! */  /*  * servers configuration  */ $i = 0;  /*  * first server  */ $i++; /* authentication type */ $cfg['servers'][$i]['auth_type'] = 'config'; /* server parameters */ $cfg['servers'][$i]['host'] = 'localhost'; $cfg['servers'][$i]['connect_type'] = 'tcp'; $cfg['servers'][$i]['compress'] = false; /* select mysql if server not have mysqli */ $cfg['servers'][$i]['extension'] = 'mysqli'; $cfg['servers'][$i]['allownopassword'] = true; $cfg['servers'][1]['user'] = 'root'; //edit line $cfg['servers'][1]['password'] = 'xxxx'; // password 

and comment line now

//$ cfg [‘servers’] [$ i] [‘pma__table_uiprefs’] = ‘pma__table_uiprefs'; 

Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -