phpMyAdmin access denied for user 'root'@'localhost' (using password: NO)

前端 未结 15 1841
北海茫月
北海茫月 2021-02-01 06:18

I am unable to connect to my MySQL in xampp I have this error:

MySQL said: Documentation

1045 - Access denied for user \'root\'@\'localhost\'

15条回答
  •  余生分开走
    2021-02-01 07:18

    $cfg['Servers'][$i]['auth_type'] = 'HTTP';
    $cfg['Servers'][$i]['user'] = 'root';
    $cfg['Servers'][$i]['password'] = '1234';
    

    This solves my problem too. It just logs in automatically.

提交回复
热议问题