使用者:Elleryq
出自VFP Wiki
(修訂版本間差異)
小 (revert) |
小 |
||
第5行: | 第5行: | ||
*http://wiki.debian.org.tw/DebianWiki | *http://wiki.debian.org.tw/DebianWiki | ||
*Please see [http://meta.wikipedia.org/wiki/MediaWiki_i18n documentation on customizing the interface] and the [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide] for usage and configuration help. | *Please see [http://meta.wikipedia.org/wiki/MediaWiki_i18n documentation on customizing the interface] and the [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide] for usage and configuration help. | ||
+ | |||
+ | === 更新到 MediaWiki 1.6.5 步驟...實驗中 === | ||
+ | # 下載 backup.sql | ||
+ | # 設置變數:character_set_client、character_set_server、character_set_results、character_set_database、character_set_connection。 | ||
+ | # create database dbname | ||
+ | # GRANT ALL ON dbname.* TO 'xxxxx'@'localhost' IDENTIFIED BY 'password' | ||
+ | # use dbname | ||
+ | # source backup.sql | ||
+ | # 下載 mediawiki,解開 | ||
+ | # 將原來的 LocalSettings.php 與 AdminSettings.php 放過去 | ||
+ | # 到 maintainance 下執行 php update.php | ||
+ | # 修正 LocalSettings.php | ||
+ | #*路徑問題 | ||
+ | #*$wgSitename 設為 VFPWiki (或 VFP Wiki?!) , 這邊再研究 | ||
+ | #*$wgDBmysql5 = true; 這可以強迫 mediawiki 連線後,先設置 set name=utf8 | ||
+ | # 完成 | ||
+ | |||
+ | 目前主要頁面都 ok, 但是某些之前有東西的頁面卻需要再次編輯...這很奇怪... | ||
+ | 例如 VFP_Wiki:Community 或新聞動態或 VFP_Wiki:常見問題與解答,這有可能是編碼問題 | ||
+ | 另外一種可能則是 update 時,被處理掉了。 | ||
+ | |||
+ | ==== 要設置的參數 ==== | ||
+ | <pre>set session character_set_client=utf8; | ||
+ | set session character_set_server=utf8; | ||
+ | set session character_set_results=utf8; | ||
+ | set session character_set_database=utf8; | ||
+ | set session character_set_connection=utf8; | ||
+ | show variables like '%CHAR%'; | ||
+ | </pre> | ||
=== Testing === | === Testing === | ||
*[[VFP Wiki:如何編輯頁面|如何編輯頁面]] | *[[VFP Wiki:如何編輯頁面|如何編輯頁面]] | ||
[[Image:Winx_girls.JPG]] | [[Image:Winx_girls.JPG]] |
在2006年5月10日 (三) 06:13所做的修訂版本
目錄 |
elleryq 其人
可逕行參考我的網站 Thinking more, http://thinkingmore.no-ip.info
其他
- http://wiki.debian.org.tw/DebianWiki
- Please see documentation on customizing the interface and the User's Guide for usage and configuration help.
更新到 MediaWiki 1.6.5 步驟...實驗中
- 下載 backup.sql
- 設置變數:character_set_client、character_set_server、character_set_results、character_set_database、character_set_connection。
- create database dbname
- GRANT ALL ON dbname.* TO 'xxxxx'@'localhost' IDENTIFIED BY 'password'
- use dbname
- source backup.sql
- 下載 mediawiki,解開
- 將原來的 LocalSettings.php 與 AdminSettings.php 放過去
- 到 maintainance 下執行 php update.php
- 修正 LocalSettings.php
- 路徑問題
- $wgSitename 設為 VFPWiki (或 VFP Wiki?!) , 這邊再研究
- $wgDBmysql5 = true; 這可以強迫 mediawiki 連線後,先設置 set name=utf8
- 完成
目前主要頁面都 ok, 但是某些之前有東西的頁面卻需要再次編輯...這很奇怪... 例如 VFP_Wiki:Community 或新聞動態或 VFP_Wiki:常見問題與解答,這有可能是編碼問題 另外一種可能則是 update 時,被處理掉了。
要設置的參數
set session character_set_client=utf8; set session character_set_server=utf8; set session character_set_results=utf8; set session character_set_database=utf8; set session character_set_connection=utf8; show variables like '%CHAR%';