
ダウンロードした
① MySQL、phpoMyAdmin、XAMPP などが稼働していたら全部停止する。
② これまで使っていた「phpMyAdmin」フォルダ名を適宜変更→ phpMyAdmin_old
③phpMyAdmin 公式サイト から最新版をDL(ダウンロード)し、XAMPP ディレクトリに解凍して「phpMyAdmin」に変更。
④ 旧「phpMyAdmin」フォルダにある「config.inc.php」を新「phpMyAdmin」フォルダにコピペするか、新「phpMyAdmin」フォルダにある「config.sample.inc.php 」をテキストエディタで開き、書き直した後に保存する。
② これまで使っていた「phpMyAdmin」フォルダ名を適宜変更
③
④ 旧「phpMyAdmin」フォルダにある「config.inc.php」を新「phpMyAdmin」フォルダにコピペするか、新「phpMyAdmin」フォルダにある「
/* Authentication type */
$cfg[‘Servers’][$i][‘host’] = ‘localhost’;
$cfg[‘Servers’][$i][‘compress’] = false;
$cfg[‘Servers’][$i][‘AllowNoPassword’] = false; ⇐ trueに変更
/* User used to manipulate with storage */
$cfg[‘Servers’][$i][‘auth_type’] = ‘cookie’;
$cfg[‘Servers’][$i][‘user’] = ‘root’;
$cfg[‘Servers’][$i][‘password’] = ‘password’;
$cfg[‘Servers’][$i][‘extension’] = ‘mysqli’;
$cfg[‘Servers’][$i][‘AllowNoPassword’] = true;
$cfg[‘Lang’] = ”;
/* Advanced phpMyAdmin features */
* 以下全てコメントアウト
※ブラウザでphpMyAdmin(例: $cfg[‘Servers’][$i][‘host’] = ‘localhost’;
$cfg[‘Servers’][$i][‘compress’] = false;
$cfg[‘Servers’][$i][‘AllowNoPassword’] = false; ⇐ trueに変更
/* User used to manipulate with storage */
$cfg[‘Servers’][$i][‘auth_type’] = ‘cookie’;
$cfg[‘Servers’][$i][‘user’] = ‘root’;
$cfg[‘Servers’][$i][‘password’] = ‘password’;
$cfg[‘Servers’][$i][‘extension’] = ‘mysqli’;
$cfg[‘Servers’][$i][‘AllowNoPassword’] = true;
$cfg[‘Lang’] = ”;
/* Advanced phpMyAdmin features */
* 以下全てコメントアウト


