在 phpMyAdmin 錯誤訊息顯示如下:


首先開啟 phpMyAdmin,按左方 SQL 小圖示

輸入以下資料並執行(意思是更改 root 密碼,其中[你的密碼]請自行設定)
UPDATE user SET Password=PASSWORD('你的密碼')
WHERE user='root';

輸入以下資料並執行(意思是系統更新)
FLUSH PRIVILEGES;

開啟 phpMyAdmin 目錄中的 config.inc.php
尋找 $cfg['Servers'][$i]['password'] 約可以在 75 行、133行、166行找到三筆資料:
$cfg['Servers'][$i]['password'] = '';

只要修改第一個即可,將
$cfg['Servers'][$i]['password'] = '';
修改為
$cfg['Servers'][$i]['password'] = '你的密碼';

重新開啟 phpMyAdmin 就可以了。
2005/08/26 17:50 2005/08/26 17:50
2005/08/26 17:50 

Trackback Address :: http://blog.raienet.com/trackback/29


[◀ PREV][1]... [381][382][383][384][385][386][387][388][389]... [410][NEXT ▶]