WordPress 2.7.1
WordPressをsvnで更新できるように設置してみました。
前提としてpublic_htmlの中に設置します。
public_html/wordpress/
1.WordPress本体をチェックアウトします。
$ svn co http://svn.automattic.com/wordpress/tags/2.7.1/ wordpress
2.日本語の言語パッケージをチェックアウトします。
$ svn co http://svn.automattic.com/wordpress-i18n/ja/tags/2.7.1/ wordpress/wp-content/ languages $ cd wordpress/wp-content/languages/messages/ $ cp ja.mo ../ $ cd
3.マルチバイト文字の取り扱いに関する不具合の累積的修正と強化を行うプラグインをダウンロードします。
$ wget http://eastcoder.com/download/wp-multibyte-patch-1.1.2.zip $ unzip wp-multibyte-patch-1.1.2.zip $ mv wp-multibyte-patch wordpress/wp-content/plugins/ $ rm wp-multibyte-patch-1.1.2.zip
4.DBの設定を行う。
$ mv wp-config-sample.php wp-config.php $ vi wp-config.php
ソースコードの編集
PHP:
-
// ** MySQL settings - You can get this info from your web host ** //
-
/** The name of the database for WordPress */
-
-
/** MySQL database username */
-
-
/** MySQL database password */
-
-
/** MySQL hostname */
-
-
/** Database Charset to use in creating database tables. */
-
-
/** The Database Collate type. Don't change this if in doubt. */
-
-
/**
-
* WordPress Localized Language, defaults to English.
-
*
-
* Change this to localize WordPress. A corresponding MO file for the chosen
-
* language must be installed to wp-content/languages. For example, install
-
* de.mo to wp-content/languages and set WPLANG to 'de' to enable German
-
* language support.
-
*/
5.ブラウザからアクセスしてセットアップを行う。
http://localhost/wordpress/
ブログのタイトルとメールアドレスを入力してWordPressをインストールを押します。

インストールが完了したら、ユーザ名とパスワードをメモして、ログインを押します。

ログインすると、ダッシュボードが表示されます。WordPressのblogに移動するには、左上のサイトを開くを押します。




