“Switch PHP Version Ubuntu 20.04” Código de respuesta

cambiar la versión php 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
BlueMoon

cambiar la versión php ubuntu

# Interactive Way
sudo update-alternatives --config php
cyberjourney

Ubuntu Switch PHP Versión

sudo update-alternatives --config php
Mr. Samy

cambiar la versión php ubuntu

$ sudo update-alternatives --set php /usr/bin/php7.1
$ sudo update-alternatives --set phar /usr/bin/phar7.1
$ sudo update-alternatives --set phar.phar /usr/bin/phar.phar7.1
Perfect Pig

Switch PHP Version Ubuntu 20.04

# This might be a longer process but it worked for me
# firstly completely remove the current PHP present in your OS (ubuntu)
# command to remove > sudo apt-get purge php7.*
# next command > sudo apt autoremove -y

# now install the php version you want with the command > sudo apt-get install php7.2 libapache2-mod-php7.2 php7.2-mcrypt php7.2-mysql
MrBeanDev

Respuestas similares a “Switch PHP Version Ubuntu 20.04”

Preguntas similares a “Switch PHP Version Ubuntu 20.04”

Más respuestas relacionadas con “Switch PHP Version Ubuntu 20.04” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código