How-To Install WP-CLI on shared hosting (updated)

This is the second update version of How-To Install WP-CLI on shared hosting and How-To Install WP-CLI on shared hosting 2. This guide has been tested and is working for my provider and WP-CLI 0.22.0

rm -rf ~./wp-cli
cd ~.
mkdir wp-cli
cd ~./wp-cli
curl -sS https://getcomposer.org/installer | php
alias composer='php composer.phar'
composer create-project wp-cli/wp-cli --no-dev
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
php wp-cli.phar --info
alias wp='php ~./wp-cli/wp-cli.phar'

Leave a Reply

Your email address will not be published. Required fields are marked *