安裝wordpress

首先先下載
http://wordpress.org/latest.zip
(目前最新版本為2.05版)

再來下載中文化的檔案
http://skyfate.googlepages.com/WordPress-2.0.5-zh_TW.rar
將中文化的檔案(zh_TW.po、zh_TW.mo)放入wp-includes–>languages的資料夾中
一起上傳到虛擬空間中

修改wp-config-sample.php的內容

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
// ** MySQL settings ** //
define('DB_NAME', 'wordpress');    // The name of the database(資料庫名稱)
define('DB_USER', 'username');     // Your MySQL username(資料庫帳號)
define('DB_PASSWORD', 'password'); // ...and password(資料庫密碼)
define('DB_HOST', 'localhost');    // 99% chance you won't need to change this value(資料庫位址)
 
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix  = 'wp_';   // Only numbers, letters, and underscores please!
 
// Change this to localize WordPress.  A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
// to enable German language support.
define ('WPLANG', '');
 
/* That's all, stop editing! Happy blogging. */
 
define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?>

找到

1
define (’WPLANG’, ‘’);

取代為

1
define (’WPLANG’, ‘zh_TW’);

內容修改完之後把wp-config-sample.php改成wp-config.php上傳,出現點下install.php畫面即成功了

本篇發表於 部落格架設。將永久鍊結加入書籤。

發表迴響

您的電子郵件位址並不會被公開。 必要欄位標記為 *

*

您可以使用這些 HTML 標籤與屬性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>