“Logging out” of phpMyAdmin?

后端 未结 7 2187
迷失自我
迷失自我 2020-12-25 10:11

The error that I get on phpMyAdmin is the following

The phpMyAdmin configuration storage is not completely configured, some extended features have been deact         


        
相关标签:
7条回答
  • 2020-12-25 11:07

    Simple seven step to solve issue in case of WampServer:

    1. Start WampServer
    2. Click on Folder icon Mysql -> Mysql Console
    3. Press Key Enter without password
    4. Execute Statement

      SET PASSWORD FOR root@localhost=PASSWORD('root');
      
    5. open D:\wamp\apps\phpmyadmin4.1.14\config.inc.php file set value

      $cfg['Servers'][$i]['auth_type'] = 'cookie';
      $cfg['Servers'][$i]['user'] = '';
      
    6. Restart All services

    7. Open phpMyAdmin in browser enter user root and pass root
    0 讨论(0)
提交回复
热议问题