天天看點

Ubuntu安裝中文版WordPress

版權聲明:本文為部落客原創文章,未經部落客允許不得轉載。 https://blog.csdn.net/inforstack/article/details/53728364

工具

  1. PHP5
  2. MySql 傳送門
  3. Apache2
  4. WordPress 漢化版WordPress

安裝PHP5

sudo apt-get install php5           

mysql資料庫擴充

sudo apt-get install libapache2-mod-php5           

部署WordPress

Apache2 的加載目錄是 :/var/www/work

将下載下傳好的WordPress解壓到:/var/www/work

重新開機Apache2

通路 http://localhost/wordpress

恭喜成功了!

配置WordPress資料庫連結

wp-config.php 檔案修改

/** MySQL 資料庫名稱*/

define('DB_NAME', 'WordPress');
 
/** MySQL 使用者名 */
define('DB_USER', 'name');
 
/** MySQL 密碼 */
define('DB_PASSWORD', 'password');
 
/** MySQL 位址 或 127.0.0.1:7777 冒号後面是指定端口 */
define('DB_HOST', '127.0.0.1');

/** 漢化*/
define ('WPLANG', 'zh_CN');           

如果WordPress目錄沒有wp-config.php,這時你複制一份wp-config-sample.php,改名:wp-config.php

Holle Word Press!