Skip to content

Instantly share code, notes, and snippets.

View ClementDuez's full-sized avatar

Clément Duez ClementDuez

  • Cloudship
  • Lille
View GitHub Profile
@full-stack-king
full-stack-king / ubuntu-php-version-switch.md
Last active November 15, 2019 04:10
How can I downgrade from PHP 7 to PHP 5.6 on Ubuntu 16.04? / How to change php version in Ubuntu Apache

Switch PHP version:

Note: change PHP version numbers to match your requirement. I have used 5.6 and 7.0

From php5.6 to php7.0 :

Apache:

Changing php version for Aapche server

sudo a2dismod php5.6 ; sudo a2enmod php7.0 ; sudo service apache2 restart