我是PHP新手。在執行我的應用程序時,我得到了以下錯誤:訪問被拒絕用戶'root'@ localhost mysql錯誤1045
在phpMyAdmin的代碼是這樣的
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPasswordRoot'] = true;
正如我已經收回了,我上面的代碼更改爲
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'Pass123';
$cfg['Servers'][$i]['AllowNoPasswordRoot'] = true;
現在我得到以下錯誤
訪問被拒絕用戶'root'@'localhost'(使用密碼:YES)MySQL錯誤#:1045
請讓我知道,出了什麼錯在這裏。
你有沒有確認是否1)你有正確的用戶名/密碼? 2)你的域名是否可以實際連接到mysql服務器(使用phpMyAdmin來驗證) – JohnP 2011-04-05 04:43:33
你有沒有做過一點搜索,請參閱http://stackoverflow.com/questions/2912761/beginner-mysql-error-access-denied http ://stackoverflow.com/questions/2540794/unable-to-access-mysql-from-myphpadmin-after-setting-root-password-in-easyphpwam http://stackoverflow.com/questions/3532868/mysql-error- 1045-access-denied – gideon 2011-04-05 04:45:07
分享一些代碼....所以我們可以幫忙,似乎你沒有通過正確的密碼到函數mysql_connect – Necronet 2011-04-05 04:46:05