PhpMyAdmin訪問被拒絕

zoezs發表於2014-09-18

這幾天開始學習PHP,用的環境是XAMPP,開始安裝好所有的訪問都沒有問題,自己改了下MySql root的密碼,然後PhpMyAdmin就沒辦法訪問Mysql了,顯示訪問被拒絕,使用者名稱或者密碼錯誤,網上搜了下,好多同樣的問題,修改phpMyAdmin目錄下的config.inc.php的密碼,

$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'root';
$cfg['Servers'][$i]['AllowNoPasswordRoot'] = true;

改完發現還是有問題,

後來才查到,原來需要增加下面這幾行

$cfg['SQLValidator']['use']      = FALSE;   // Make the SQL Validator available
$cfg['SQLValidator']['username'] = 'root';      // If you have a custom username, specify it here (defaults to anonymous)
$cfg['SQLValidator']['password'] = 'root';      // Password for username

2個是不同的配置。

特此記錄以便有其他人遇到同樣問題。

相關文章