Last active
November 29, 2019 11:05
-
-
Save theodorosploumis/51579dd8ee085e08b24f5fcc0550d85e to your computer and use it in GitHub Desktop.
Install php7 with useful extension on Ubuntu xenial 16.10
This file contains 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
sudo apt-get purge php5-common -y | |
#sudo apt-get install php7.0 php7.0-fpm php7.0-mysql -y | |
sudo apt-get install -y \ | |
php \ | |
libapache2-mod-php \ | |
php-fpm \ | |
php-mysql \ | |
php-memcached \ | |
php-pear \ | |
php-xml \ | |
php-mbstring \ | |
php-xdebug \ | |
php-intl \ | |
php-curl \ | |
php-gd \ | |
php-zip \ | |
php-json \ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks very much