myAdBanner

2009年3月22日 星期日

更換phpMyAdmin登入的認證方式

更改 config.inc.php

第73行

$cfg['Servers'][$i]['auth_type'] = 'http'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user
$cfg['Servers'][$i]['password'] = ''; // MySQL password (only needed

將'http' 改為 'cookie'
存檔後就OK了

另外
如果不想輸入帳號的話
第45行

$cfg['blowfish_secret'] = 'username';


username 改為你的帳號名稱就OK了

2009年3月16日 星期一

解決phpMyAdmin讀MySql資料庫亂碼問題

打開 phpMyAdmin/librarries/select_lanf.lib.php


306 'big5'=latin1',
323 'utf-8' => 'latin1',


更改後OK了