這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

Convert WP Database to UTF-8

外掛說明

This plugin can convert your WordPress database (both tables and columns) to UTF-8 character set. It will be especially useful when you move your database from one server to another where the default CHARSET is not UTF-8.

螢幕擷圖

  • Admin interface

安裝方式

  1. Upload the directory utf-8-db-converter to the /wp-content/plugins/ directory
  2. Activate the plugin through the Plugins menu in WordPress
  3. Then you’ll see the sub-menu UTF-8 DB Converter under the Plugins menu
  4. Follow the instructions – Done!

常見問題集

What’s happening “behind the scene”?
  1. Change tables: ALTER TABLE $table DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci
  2. Change columns: ALTER TABLE $table CHANGE $field_name $field_name $field_type CHARACTER SET utf8 COLLATE utf8_general_ci
What about the WP version?

As you’ve seen, only MySQL and PHP are required. Roughly speaking, it has nothing to do with WordPress, so you can use almost any version of WordPress.

使用者評論

閱讀全部 4 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈Convert WP Database to UTF-8〉的開發相關工作。

參與者

將〈Convert WP Database to UTF-8〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

2011-10-14 version 1.0.2

  • use COLLATE utf8_general_ci instead of utf8_bin

2009-06-20 version 1.0.0 released