08/08/26 04:17:54 d5ic3TyM
>>859
URLリンク(www.phpmyadmin.net)
Qwebに展開してインストールすると良いよ
config.inc.phpのコメントを除いた中身
(MySQLのパスワードが初期化されてadminの場合)
<?php
$cfg['blowfish_secret'] = 'Turbo Station';
$i = 0;
$i++;
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'admin';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
?>