Locked History Attachments

PHP/WordPress

日本語版配布サイト
http://ja.wordpress.org/

ダウンロードと展開

wget http://ja.wordpress.org/wordpress-2.8-ja.zip
unzip wordpress-2.8-ja.zip

MySQLのインストール

yum install mysql mysql-server php-mysql

sudo /etc/init.d/mysqld start
chkconfig --add mysqld

databaseの作成

# mysql -u root
> create database wp;
> grant all privileges on wp.* to wp@localhost identified by  'wp';

設定ファイル

cp wp-config-sample.php wp-config.php
vi wp-config.php