“PHP -Version Ubuntu 20.04 wechseln” Code-Antworten

PHP -Version Ubuntu wechseln

# 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

PHP -Version Ubuntu wechseln

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

Ubuntu Switch PHP -Version

sudo update-alternatives --config php
Mr. Samy

PHP -Version Ubuntu wechseln

$ 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

PHP -Version Ubuntu 20.04 wechseln

# 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

Ähnliche Antworten wie “PHP -Version Ubuntu 20.04 wechseln”

Fragen ähnlich wie “PHP -Version Ubuntu 20.04 wechseln”

Weitere verwandte Antworten zu “PHP -Version Ubuntu 20.04 wechseln” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen