Answers for "install php8.0-fpm ubuntu"

PHP
4

ubuntu install php 8

# Ubuntu 20.04
# List existing PHP packages
dpkg -l | grep php | tee packages.txt

#Add ondrej/php PPA
sudo add-apt-repository ppa:ondrej/php # Press enter when prompted.
sudo apt-get update

#Install PHP 8.0 with CLI
sudo apt install php8.0-common php8.0-cli

#Additional extensions
sudo apt install php8.0- { bz2,curl,intl,mysql,readline,xml }
Posted by: Guest on July-05-2021
0

check php-fpm version ubuntu

#Checking and printing PHP version installed on your Linux and Unix server
#To find out php version installed on the server type any one of the following commands on your server.

1.Open the terminal prompt and then type the following commands.
2.Login to the server using the ssh command. For example: ssh user@linux-unix-server
3.Display PHP version, run: php --version OR php-cgi --version
4.To print PHP 7 version, type: php7 --version OR php7-cgi --version
5.Find latest PHP 8 version, type: php8 --version OR php8-cgi --version
Posted by: Guest on June-27-2021

Browse Popular Code Answers by Language