“Ändern Sie die PHP -Version auf Ubuntu” 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

Ändern Sie die 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
Disgusted Dragonfly

Ändern Sie die PHP -Version Ubuntu

$ sudo update-alternatives --config php
 or
$ sudo a2enmod php7.1(version)
tsnl_incredible

Ändern Sie die PHP -Version in Ubuntu

sudo update-alternatives --config php
sudo update-alternatives --config phar
sudo update-alternatives --config phar.phar
Gleaming Gecko

Ändern Sie die PHP -Version Ubuntu

sudo update-alternatives --config php
Mr. Samy

Ändern Sie die PHP -Version auf Ubuntu

alias setphp="sudo update-alternatives --config php;sudo update-alternatives --config phar; update-alternatives --config phar.phar; a2dismod php*.*;systemctl restart apache2"

  Put the above alias in the

  sudo nano ~/.bashrc
  
  #After the above command just run this command
  
  a2enmod php<Your Desired Version> # like, a2enmod php7.4
  
  Now you can run command "setphp" from your terminal.
Dharmesh Tukadiya

Ähnliche Antworten wie “Ändern Sie die PHP -Version auf Ubuntu”

Fragen ähnlich wie “Ändern Sie die PHP -Version auf Ubuntu”

Weitere verwandte Antworten zu “Ändern Sie die PHP -Version auf Ubuntu” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen