Skip to content

Instantly share code, notes, and snippets.

@oskarcalvo
Last active November 3, 2017 11:46
Show Gist options
  • Save oskarcalvo/159753f904e10b4b2b8abda2c6878777 to your computer and use it in GitHub Desktop.
Save oskarcalvo/159753f904e10b4b2b8abda2c6878777 to your computer and use it in GitHub Desktop.
#https://askubuntu.com/questions/761713/how-can-i-downgrade-from-php-7-to-php-5-6-on-ubuntu-16-04
Switch PHP version:
From php5.6 to php7.0:
Apache:
sudo a2dismod php5.6 ; sudo a2enmod php7.0 ; sudo service apache2 restart
CLI:
sudo update-alternatives --set php /usr/bin/php7.0
From php7.0 to php5.6:
Apache:
sudo a2dismod php7.0 ; sudo a2enmod php5.6 ; sudo service apache2 restart
CLI:
sudo update-alternatives --set php /usr/bin/php5.6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment