0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

XServerにWordPress5.3でも動くようにWP-CLIをインストールする

Last updated at Posted at 2020-03-11

すること

XServerにWP-CLIをインストールします。

$ mkdir ~/bin
$ curl -o ~/bin/wp https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
$ chmod +x ~/bin/wp
$ echo -e "\n"'alias wp="php7.4 ~/bin/wp"' >> ~/.bashrc
$ source ~/.bashrc

Gistにコードを書いたので、下記での実行も可能です。

$ curl https://gist.githubusercontent.com/yousan/721bed85c7040d22cfa73cef47bbf8ed/raw/0d4b49ed260bd563c169886ae18d7e749c927905/install_wpcli_for_xserver.sh | sh

コマンドについて

コマンド 説明
mkdir ~/bin ホームディレクトリにbinを作成する
curl ... WP-CLIのダウンロード
chmod +x bin/wp 実行権限付与
echo 'alias wp="php7.4 ~/bin/wp"' >> ~/.bashrc wpにエイリアスを掛ける
source ~/.bashrc エイリアスの再読み込み

エイリアスの利用

XServerでは env php がPHP5.41となっていますが、WordPress 5.3ではPHP5.6が必要要件となっているため動きません。そこでエイリアスを掛けています。

$ wp plugin list
Your server is running PHP version 5.4.16 but WordPress 5.3 requires at least 5.6.20.
  1. 2020年3月11日 現在

0
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?