DebianLinuxTutorials

How To Install PHP 7.4 on Debian 10

Install PHP 7.4 on Debian 10

In this tutorial, we will show you how to install PHP 7.4 on Debian 10. For those of you who didn’t know, PHP (recursive acronym for PHP: Hypertext Preprocessor) is a popular server scripting language known for creating dynamic and interactive Web pages. PHP is a widely-used programming language on the Web.

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo‘ to the commands to get root privileges. I will show you the step-by-step installation of PHP 7.4 on a Debian 10 (Buster).

Prerequisites

  • A server running one of the following operating systems: Debian 10 (Buster).
  • It’s recommended that you use a fresh OS install to prevent any potential issues.
  • SSH access to the server (or just open Terminal if you’re on a desktop).
  • A non-root sudo user or access to the root user. We recommend acting as a non-root sudo user, however, as you can harm your system if you’re not careful when acting as the root.

Install PHP 7.4 on Debian 10 Buster

Step 1. Before we install any software, it’s important to make sure your system is up to date by running the following apt commands in the terminal:

sudo apt update
sudo apt upgrade

Step 2. Installing PHP 7.4 on Debian 10.

Add the Sury PPA for PHP 7.4 package using wget:

sudo apt -y install lsb-release apt-transport-https ca-certificates wget
sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg

Then add the repository:

echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php.list

It’s time to install PHP 7.4 on your system. Don’t forget to update your packages before Installing PHP:

sudo apt update
sudo apt install php7.4

Check that PHP 7.4 is available for installation:

php -v

Run the following command to Install additional packages with PHP 7.4 on the Debian system:

sudo apt install php7.4-{bcmath,bz2,intl,gd,mbstring,mysql,zip}

For Nginx, you need to install FPM, execute the following command to install PHP 7.4 FPM:

sudo apt install php7.4-fpm

Step 3. Test PHP.

To test PHP, create a test file named info.php with the content below. Save the file, then browse to it to see if PHP is working:

nano /var/www/html/info.php

Paste the following code:

<?php
phpinfo();
?>

Try to access it at http://your_server_ip/info.php. If the PHP info page is rendered in your browser then everything looks good and you are ready to proceed further.

Congratulations! You have successfully installed the PHP. Thanks for using this tutorial for installing PHP 7.4 on Debian 10 Buster system. For additional help or useful information, we recommend you check the official PHP website.

VPS Manage Service Offer
If you don’t have time to do all of this stuff, or if this is not your area of expertise, we offer a service to do “VPS Manage Service Offer”, starting from $10 (Paypal payment). Please contact us to get the best deal!
Back to top button