Created
March 20, 2017 09:25
-
-
Save mjavadhpour/c5f76209848df70044fc15da9d86440a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Switch PHP version: | |
From php5.6 to php7.0 : | |
Apache: | |
- sudo a2dismod php5.6 ; sudo a2enmod php7.0 ; sudo service apache2 restart | |
CLI: | |
- 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