wordpress手動インストール

スポンサーリンク
この記事は約1分で読めます。

htmlホームページ用に契約しているレンタルサーバーのサブディレクトリにwordpressを手動インストール

wordpressのダウンロード

https://wordpress.org/からwordpressをダウンロードする

wordpress-5.2.1.zipの5.2.1はバージョンなので作業時期によって変わります。

wordpress-5.2.1.zipを解凍する。

データーベースを作っておく

契約レンタルサーバーの手順に従ってデーターベースを作成し、以下を記録しておく、

サーバー
データベース名
ユーザー名
パスワード

ダウンロードしたwp-config-sample.phpを編集

‘DB_NAME’, ‘database_name_here’ );

/** MySQL database username */
define( ‘DB_USER’, ‘username_here’ );

/** MySQL database password */
define( ‘DB_PASSWORD’, ‘password_here’ );

/** MySQL hostname */
define( ‘DB_HOST’, ‘localhost’ );

/** Database Charset to use in creating database tables. */
define( ‘DB_CHARSET’, ‘utf8’ );

/** The Database Collate type. Don’t change this if in doubt. */
define( ‘DB_COLLATE’, ” );

赤アンダーラインの’DB_NAME’ ’DB_USER’  ‘DB_PASSWORD’ ’DB_HOST’ を設定する。

黄アンダーラインのエディターがutf8であることを確かめる。

認証キーを設定する

* Authentication Unique Keys and Salts.
*
* Change these to different unique phrases!
* You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
* You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
*
* @since 2.6.0
*/
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’ );

https://api.wordpress.org/secret-key/1.1/salt/にアクセスして出力された内容をそのまま貼り付ける。

wp-config.phpをバックアップしておき、wp-config-sample.phpをwp-config.phpにする。

解凍したファイルをサーバーへアップロードする

ftpでファイルをサーバーへアップロードする。

アップロード先のwp-adminを開きインストールを続ける

ユーザー名 パスワードを入力しインストールを続ける。

簡単インストール使えばいいことだろう
ラッキー
ラッキー
error: Content is protected !!