安裝步驟-AppServ(v2.5.10)+WordPress(4.0)+資料庫設置

安裝步驟-AppServ(v2.5.10)+WordPress(4.0)+資料庫設置

● 資料庫設置

1. http://localhost/phpMyAdmin/index.php

2. 建立新資料庫:名稱 utf8_unicode_ci (檔案位置: C:\AppServ\MySQL\data\名稱)

3. http://localhost/wp-admin/install.php
● 安裝架設網站軟體 AppServ(v2.5.10)

下載 wordpress 解壓到 C:\AppServ\www (先將萏有 index.php 改名)

1. http://localhost/phpMyAdmin/ 建立資料庫

2. 複製 C:\AppServ\www\wp-config-sample.php 去 C:\AppServ\www\wp-config.php 及修改

3. 用記事本打開 C:\AppServ\www\wp-config.php 及修改如下

// ** MySQL 設定 – 您可以從主機服務提供商獲取相關資訊。 ** //
/** WordPress 的資料庫名稱,請更改 “database_name_here" */
define(‘DB_NAME’, ‘database_name_here’);

/** MySQL 資料庫使用者名稱,請更改 “username_here" */
define(‘DB_USER’, ‘username_here’);

/** MySQL 資料庫密碼,請更改 “password_here" */
define(‘DB_PASSWORD’, ‘password_here’);

/** MySQL 主機位址 */
define(‘DB_HOST’, ‘localhost’);

/** 建立資料表時預設的文字編碼 */
define(‘DB_CHARSET’, ‘utf8’);

/** 資料庫對照型態。如果不確定請勿更改。 */
define(‘DB_COLLATE’, ‘utf8_unicode_ci’);

4. http://localhost/readme.html 啟動 wordpress 設定及安裝

5. 如果出現 Warning: Cannot modify header information – headers already sent by……….error 字句, 打開 c:\windows\php.ini 找 output_buffering=off 改為 on
Cannot Modify Header Information的解決方法 http://addesigncompany.servehttp.com/adexpressbook/?p=389