phpMyAdminログイン時にパスワード
phpMyAdminを用いてデータベースを操作するための認証を設定します。
【45行目】
43 * characters.
44 */
45 $cfg['blowfish_secret'] = '';
↓
43 * characters.
44 */
45 $cfg['blowfish_secret'] = 'nifty';
・45行目の『nifty』と書かれた部分はphpMyAdminへログインするためのパスワードを暗号化するフレーズとなっております。お客様にて任意の文字列に置き換えてください。
・前後にある『''』は消さないでください。
【71行目】
69 // used for all relational
70 // features (pmadb)
71 $cfg['Servers'][$i]['auth_type'] = ''; // Authentication method (config, http or cookie based)?
↓
69 // used for all relational
70 // features (pmadb)
71 $cfg['Servers'][$i]['auth_type'] = 'cookie'; // Authentication method (config, http or cookie based)?
・前後にある『''』は消さないでください。
関連記事