XAMPPのphpMyAdminのアクセスエラーを解消
エラー「アクセスが拒否されました」
mysqli::real_connect(): (HY000/1045): Access denied for user 'root'@'localhost' (using password: NO)
phpMyAdminのユーザ、パスワードが初期値のため
phpMyAdmin/config.inc.php を変更する。
$cfg['Servers'][$i]['user'] = 'ユーザ';
$cfg['Servers'][$i]['password'] = 'パスワード';
mysql自体の初期値は、root/root
wp-config.phpは
/** MySQL データベースのユーザー名 */
define( 'DB_USER', 'ユーザ' );
/** MySQL データベースのパスワード */
define( 'DB_PASSWORD', 'パスワード' );