Answers for "ubuntu install php version"

PHP
2

ubuntu install php

# Update packages lists
sudo apt update

# Install PPA
sudo add-apt-repository ppa:ondrej/php

## If you want the latest
sudo apt install php
## else sepcify version number as below
sudo apt install php7.3

# Install Extensions (add php version number for specific version)
sudo apt-get install php7.3-fpm php7.3 php7.3-cli php7.3-mysql php7.3-gd php7.3-imagick php7.3-recode php7.3-tidy php7.3-xmlrpc php7.3-common php7.3-curl php7.3-mbstring php7.3-xml php7.3-bcmath php7.3-bz2 php7.3-intl php7.3-json php7.3-readline php7.3-zip

# Install the latest version of PHP and Apache wrapper
sudo apt install php libapache2-mod-php
## else if you installed a specific version of PHP
sudo apt install php libapache2-mod-php7.3

# Enable PHP (can type sudo a2enmod php, then push tab to see listed versions)
sudo a2enmod php7.3

# Restart Apache Service
sudo service apache2 restart
Posted by: Guest on April-29-2021
6

change php version ubuntu

$ sudo update-alternatives --config php
 or
$ sudo a2enmod php7.1(version)
Posted by: Guest on April-26-2020
0

installing php on ubuntu

sudo apt install php7.2-cli
sudo apt install hhvm
Posted by: Guest on April-27-2020

Code answers related to "ubuntu install php version"

Browse Popular Code Answers by Language