Skip to main content

Install PHP 7.4

Install PHP

sudo apt install -y php7.4 php7.4-fpm php7.4-mysql php-common php7.4-cli php7.4-common php7.4-json php7.4-opcache php7.4-readline php7.4-mbstring php7.4-xml php7.4-gd php7.4-curl php7.4-zip

Using PHP with Apache

Install Apache PHP Module

sudo apt install -y libapache2-mod-php

Restart Apache

sudo service apache2 restart

Using PHP with Nginx

Enable PHP to run as a service

sudo systemctl enable php7.4-fpm

Start the PHP service

sudo service php7.4-fpm start