Horje
change php version ubuntu Code Example
switch php version ubuntu
# From PHP 7.1 => PHP 5.6

#Apache
sudo a2dismod php7.1
sudo a2enmod php5.6
sudo service apache2 restart
 
 #command Line
 sudo update-alternatives --set php /usr/bin/php5.6
change php version ubuntu
//In ubunutu
Default PHP 7.1 is set on your system and you need to switch to PHP 5.6

$ sudo a2dismod php7.1
$ sudo a2enmod php5.6
$ sudo service apache2 restart
  
sudo update-alternatives --set php /usr/bin/php5.6
change php version ubuntu
$ sudo update-alternatives --config php
 or
$ sudo a2enmod php7.1(version)
change php version in ubuntu
sudo update-alternatives --config php
sudo update-alternatives --config phar
sudo update-alternatives --config phar.phar
change php version ubuntu
sudo update-alternatives --config php
linux set default php
update-alternatives --set php /usr/bin/php7.4
update-alternatives --set phar /usr/bin/phar7.4
update-alternatives --set phar.phar /usr/bin/phar.phar7.4
update-alternatives --set phpize /usr/bin/phpize7.4
update-alternatives --set php-config /usr/bin/php-config7.4




Shell

Related
how to enable remote desktop with cmd Code Example how to enable remote desktop with cmd Code Example
how to kill process in linux by name Code Example how to kill process in linux by name Code Example
uninstall/remove libreoffice from ubuntu Code Example uninstall/remove libreoffice from ubuntu Code Example
switch php version Code Example switch php version Code Example
git switch vs checkout Code Example git switch vs checkout Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12