2009年11月18日 星期三

phpMyAdmin 的登入問題

今天弄了一整天, 就是無法登入 phpMyAdmin, 真是. 難道要用舊版才行?

引述: http://blog.xuite.net/meatgod/computer/16473201

"修改config.inc.php檔
$cfg['PmaAbsoluteUri'] = ''; 這一行改成:

$cfg['PmaAbsoluteUri'] = 'http://127.0.0.1/phpMyAdmin/';
雖然說localhost應該就等於127.0.0.1,但根據phpMyAdmin FAQ [2.6]的說明,這兩個設定會使用不同的傳輸協定,localhost會用socket加速,127.0.0.1會用TCP,用socket就會造成你這種密碼錯誤的問題。




$cfg['Servers'][$i]['host'] = 'localhost';

將Server host設定改成

$cfg['Servers'][$i]['host'] = '127.0.0.1';


"

>> http://blog.xuite.net/kchin/technic/4847839

>> http://elesson.tceb.edu.tw/~yunol/eec.thu_course01/day2.html

>> http://www.kmd.com.tw/Forum/viewtopic.php?t=14849&sid=

>> http://blog.xuite.net/meatgod/computer/16473201

>> http://blog.xuite.net/arcloveangel/lovestore/22930165?ref=rel (2.5.9 版 ok)

沒有留言 :