「WordPress 3.2.x」インストール方法
| Tweet |
0、データをダウンロード。
1-1、以下のファイルの「-sample」を削除してリネーム。
wp-config-sample.php
1-2、MySQL設定@wp-config.php。
/** WordPress のためのデータベース名 */
define('DB_NAME', 'database_name_here');
/** MySQL データベースのユーザー名 */
define('DB_USER', 'username_here');
/** MySQL データベースのパスワード */
define('DB_PASSWORD', 'password_here');
1-3、以下のURLにアクセスして認証用ユニークキーをコピペ@wp-config.php。
https://api.wordpress.org/secret-key/1.1/salt/
define('AUTH_KEY', 'put your unique phrase here');
define('SECURE_AUTH_KEY', 'put your unique phrase here');
define('LOGGED_IN_KEY', 'put your unique phrase here');
define('NONCE_KEY', 'put your unique phrase here');
define('AUTH_SALT', 'put your unique phrase here');
define('SECURE_AUTH_SALT', 'put your unique phrase here');
define('LOGGED_IN_SALT', 'put your unique phrase here');
define('NONCE_SALT', 'put your unique phrase here');
2、データをサーバにアップロード。
3-1、以下のURLにアクセスしてインストール。
/wp-admin/install.php
3-2、『必要情報』
サイトのタイトル:
ユーザー名:
パスワード。2回入力してください:
メールアドレス:
このサイトがGoogleやTechnoratiなどの検索エンジンに表示されるのを許可する。:
→【WordPressをインストール】
3-3、『成功しました!』
→【ログイン】
(WordPress 3.2.1)

