In this tutorial, we will show you how to install PHP 7.3 on Debian 9. PHP (Hypertext Preprocessor) is an open-source server-side scripting language designed primarily for creating dynamic interactive websites. PHP is one of the most popular languages and it is freely available for redistribution and modifications. PHP powers WordPress, the most popular content management system used for blogging and building websites, as well as many other e-commerce websites, customer relationship management software, enterprise resource planning software, and much more.
The latest PHP 7.3 version has been officially released on December 6th, 2018. It comes with a number of new features and a few incompatibilities that you should be aware of before upgrading from the previous version.
Table of Contents
Requirements:
For the purposes of this tutorial, we will use a Debian 9 VPS.
Full SSH root access or a user with sudo privileges is also required.
1. Getting Started
First, you will need to log in to your server via SSH as a user with root access, or the root user:
and replace “IP_ADDRESS” and “PORT_NUMBER” with your actual server IP address and SSH port number.
Once logged in, let’s make sure that your Debian 9 server is up-to-date by running the following commands:
This will update the package index and will update the software currently installed on the server to the latest version.
Once your system is fully up-to-date, we can now proceed with the installation of PHP 7.3.
2. Install PHP 7.3 on Debian 9
First, let’s install the following required packages:
Next, import the signing key and enable the PPA for PHP 7.3 by using the following commands:
Run the update command again:
You can now install PHP 7.3 on your Debian 9 VPS.
To view the list all of all available PHP 7.3 packages, you can execute the following command:
Output:
To install PHP 7.3, together with some of the most commonly used extensions, run the following command:
To verify the installation is completed, run the following command:
The output should be similar to this:
3. Editing the PHP 7.3 settings on a Debian VPS
The next thing you may want to do is to customize the settings of PHP 7.3 according to your requirements. You can do this by editing the php.ini file. To find the path to this file, you can use the command below:
It will return the path to the php.ini file which is currently loaded.
Edit the file using a text editor of your choice. We will use nano in this example.
Once you are finished with changing any settings, save and close the file. If you are using Apache as a web server, you need to restart it for the new configuration to be loaded and for the changes to take effect. If you are using Nginx and PHP-FPM, you should restart the PHP-FPM service.
4. Verify If the PHP Files are Being Executed on the Server
To check if your PHP files are being executed on the server, you can create a sample info.php file and access it from your web browser.
To create the file, run the following command:
Next, enter the following content:
Save and close the file, then open your preferred web browser and access the file by using your server IP address in the URL followed by the name of the file.
You should be able to see the following information:
Congratulations! You have successfully installed PHP 7.3 on a Debian 9 server. For more detailed information about PHP 7.3, you can check the official PHP documentation.
Of course, you don’t have to install PHP 7.3 on Debian 9 if you use one of our Managed PHP Hosting services, in which case you can simply ask our expert system administrators to install PHP 7.3 on Debian 9 for you, using the LAMP or LEMP stack or any other web hosting stack of your choice. They are available 24×7 and will take care of your request immediately.
PS. If you liked this post on how to install PHP 7.3 on a Debian 9 server, please share it with your friends on the social networks using the buttons below, or simply leave a comment in the comments section. Thanks.