PHPMYADMIN自2.6版後就強制要求使用UTF-8的編碼了
如果用戶的語系是自訂為BIG5匯入時會導致中文發生亂碼問題
但是匯入時目前所有的phpmyadmin已經封鎖了大多的語系
目前只能用UTF-8的語系
可以參閱以下方式修改了相關版本是可以選擇繁體中文版的Big5
or
UTF-8
要是下一次有遇到這種情況可以來使用以降低語系發生的問題
使用方式:
1.請修改config檔案的資料
2.請將資料修改儲存後上傳至用戶的空間後再登入用戶的網頁即可使用了
ps.但是建議用戶還是使用新的版本比較好以減少漏洞發生
從用戶首頁網址連入資料庫可參考
http://tw.search.yahoo.com/search/kp?p=phpmyadmin+&ei=UTF-8&fr=yfp&x=drt
新舊版本設定方式不一樣
http://efrance.no-ip.org/phpbb/viewtopic.php?t=3500
http://tw.knowledge.yahoo.com/question/?qid=1406081412391
http://ohaha.ks.edu.tw/phpMyAdmin.htm
brucebin 發表在 痞客邦 留言(0) 人氣(151)
http://dev.mysql.com/doc/refman/5.1/en/windows-vs-unix.html
http://dev.mysql.com/doc/refman/5.1/zh/installing.html#windows-vs-unix
在WINDOWS上最常遇到的以下幾個問題
Limited number of ports
Windows systems have about 4,000 ports available for client
connections, and after a connection on a port closes, it takes
two to four minutes before the port can be reused. In
situations where clients connect to and disconnect from the
server at a high rate, it is possible for all available ports
to be used up before closed ports become available again. If
this happens, the MySQL server appears to be unresponsive even
though it is running. Note that ports may be used by other
applications running on the machine as well, in which case the
number of ports available to MySQL is lower.
For more information about this problem, see
http://support.microsoft.com/default.aspx?scid=kb;en-us;196271.
Concurrent reads
MySQL depends on the pread() and
pwrite() system calls to be able to mix
INSERT and
SELECT. Currently, we use
mutexes to emulate pread() and
pwrite(). We intend to replace the file
level interface with a virtual interface in the future so that
we can use the
readfile()/writefile()
interface to get more speed. The current implementation limits
the number of open files that MySQL 5.1 can use
to 2,048, which means that you cannot run as many concurrent
threads on Windows as on Unix.
brucebin 發表在 痞客邦 留言(0) 人氣(41)