前提・実現したいこと
ローカルサーバーのwordpressサイトにログインできなくなりました。
発生している問題・エラーメッセージ
localhost でwordpressを使用してサイトを作成していました。
公開の準備をするためにXserverを契約したあと、関連があるのかは分かりませんが、これまでのwordpress管理画面へのログインができなくなりました。
xampp/htdocs内のconfig.php と、phpmyadminフォルダのconfig.ini.php内のuser, password
とも一致しているのですが、phpmyadminにもログインできません。
wordpressのログインを使用とすると
「データベース接続確率エラー」とだけ表示されます。
phpmyadminにもログインできません。以下のエラーコードがでます。
mysqli_real_connect(): (HY000/1045): Access denied for user 'root'@'localhost' (using password: YES)
### 該当のソースコード **wordpressのconfig,php-* define('DB_NAME', 'wp-02'); define('DB_USER', 'root'); define('DB_PASSWORD', 'hogehoge'); define('DB_HOST', 'localhost'); define('DB_CHARSET', 'utf8'); define('DB_COLLATE', ''); **phpmyadminフォルダ内のconfig.inc.php** /* Authentication type and info */ $cfg['Servers'][$i]['auth_type'] = 'cookie'; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = 'hogehoge'; $cfg['Servers'][$i]['extension'] = 'mysqli'; $cfg['Servers'][$i]['AllowNoPassword'] = true; $cfg['Lang'] = ''; /* Bind to the localhost ipv4 address and tcp */ $cfg['Servers'][$i]['host'] = '127.0.0.1'; $cfg['Servers'][$i]['connect_type'] = 'tcp'; /* User for advanced features */ $cfg['Servers'][$i]['controluser'] = 'pma'; $cfg['Servers'][$i]['controlpass'] = ''; ### 試したこと 上記2ファイルのuserとpasswordを修正してみましたが、結果は同じでした。 あまり関連が理解できていない素人で恐縮ですが、接続できるようにするためには何を確認するべきか、教えて頂ければ幸いです。 よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー