PhpMyAdmin error with config file

前端 未结 8 1248
庸人自扰
庸人自扰 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 17:03

    I too had this same problem. clearing cookies and cache worked for me. try it

    0 讨论(0)
  • 2021-01-01 17:06
    $cfg['Servers'][$i]['user'] = 'root'; //mysql username here
    $cfg['Servers'][$i]['password'] = 'password'; //mysql password here
    

    Try adding the above configuration lines after $cfg['Servers'][$i]['connect_type'] = 'tcp';

    If these also doesn't work then try with a fresh configuration file, may be by copying config.sample.inc.php. Do ensure that it has the above mentioned configuration lines. Check that if it works fine and then start making changes to it step by step, if any changes are to be made..

    Please note that the username and password you provide should be able to login you from mysql command prompt..

    0 讨论(0)
提交回复
热议问题