PHPMyAdminでルートパスワードを設定すると、次のエラーが表示されます。
#1045 - Access denied for user 'root'@'localhost' (using password: NO)
PHPMyAdminパネルを開くことができません。何が間違っていますか?
Phpmyadmin config.inc.phpファイルを編集し、パスワードがある場合は、次のコードでパスワードの前に挿入します。
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['Host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = '**your-root-username**';
$cfg['Servers'][$i]['password'] = '**root-password**';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
慎重に実行する必要があるいくつかの手順を次に示します
C:\ wamp\apps\phpmyadmin内にconfigという名前のフォルダーを作成します。apps内のフォルダーは、phpmyadmin3.2.0.1のような異なる名前を持つ場合があります
認証タイプを「cookie」に変更し、ユーザー名とパスワードのフィールドを空のままにしますが、認証タイプを「config」に変更する場合は、ユーザー名rootのパスワードを入力します。