Re: How to change default php-cli version

Post Reply
User avatar
myVesta
Site Admin
Posts: 938
Joined: Fri Jun 19, 2020 9:59 am
Has thanked: 8 times
Been thanked: 6 times

Globally:

Code: Select all

# be logged as root
update-alternatives --config php
or if you know exact version:

Code: Select all

# be logged as root
update-alternatives --set php /usr/bin/php8.2
-------------------------------------------------------------------------------------

Per user account:

Code: Select all

# be logged as desired user
alias php='php8.2'
echo "alias php='php8.2'" >> ~/.bashrc
source ~/.bashrc
This method does not always give the desired result, in that case you have to globally change the PHP version, perform the desired task, and then restore the old PHP version.

For wp-cli you can change PHP version this way - viewtopic.php?f=18&t=760
gatto
Posts: 6
Joined: Fri May 07, 2021 10:56 pm

wow thanks for your quick and great reply and support.
Post Reply