PHP初心者です。
phpMyAdminに入ろうとしているのですがログイン時にエラーが出て先に進めません。
config.inc.phpの記述などいろいろ試したのですが、変わりません。
エラーメッセージも意味が分かりません。
下の記述に間違えてるところはありますでしょうか。
###エラーメッセージ
Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to access phpMyAdmin.
(セッションCookieの設定に失敗しました。 phpMyAdminへのアクセスにHTTPSの代わりにHTTPを使用している可能性があります。)グーグル翻訳
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters /
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'socket';
$cfg['Servers'][$i]['compress'] = false;
/ Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;
$cfg['Servers'][$i]['port'] = '3307'; // MySQL port
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user
$cfg['Servers'][$i]['password'] = 'root'; // MySQL password
どなたかご教示いただけませんでしょうか。
回答2件
あなたの回答
tips
プレビュー