How to Install PHP 8.3 on Ubuntu 24.04 with Apache or Nginx

PHP is the most popular scripting language used to create dynamic websites, as it offers a range of new features and improvements that enhance performance and provide additional functionality.

If you want to use PHP 8 with Apache or Nginx on Ubuntu 24.04, follow this guide, which will help you install PHP 8 and configure it to work with both web servers.

Step 1: Install Apache or Nginx

When choosing between Apache and Nginx for your web server on Ubuntu 24.04, consider their key differences.

Apache offers flexible configuration with .htaccess files and a broad range of built-in features, making it ideal for complex setups and shared hosting environments. However, it can be less efficient in handling high traffic due to higher memory usage.

Nginx, on the other hand, excels in performance and scalability with its asynchronous, event-driven architecture, making it suitable for high-traffic sites and efficient resource management. It also works well as a reverse proxy or load balancer.

If you need advanced configurations and features, go with Apache; if you prioritize performance and efficiency, Nginx is the better choice. Alternatively, using Nginx as a reverse proxy in front of Apache combines the strengths of both servers.

Installing Apache on Ubuntu

First, it’s important to update your installed software package list to ensure that you have the most latest information about available packages.

sudo apt update
sudo apt upgrade -y

If you prefer to use Apache as your web server, install it using the following command:

sudo apt install apache2 -y
Install Apache in Ubuntu
Install Apache in Ubuntu

Installing Nginx on Ubuntu

For those who choose Nginx, install it with:

sudo apt install nginx -y
Install Nginx in Ubuntu
Install Nginx in Ubuntu

Installing PHP 8.3 on Ubuntu

Ubuntu 24.04 comes with PHP 8.3 already included in its standard software repositories, which means you can install it directly from these repositories without needing to add any additional sources.

sudo apt install php8.3 -y
Install PHP in Ubuntu
Install PHP in Ubuntu

Depending on what your project needs, you might require extra features or capabilities from PHP, which are are provided by PHP extensions.

For example, if your project involves handling images, accessing databases, or working with different data formats, you’ll need specific extensions to support these functionalities.

sudo apt install php8.3 libapache2-mod-php8.3 php8.3-fpm php8.3-mysql php8.3-xml php8.3-mbstring php8.3-curl
Install PHP Modules in Ubuntu
Install PHP Modules in Ubuntu

Step 3: Configuring Apache to Use PHP

If you’ve installed Apache as your web server and want to use PHP 8.3, you need to activate the PHP module, which allows Apache to process PHP files and serve them correctly.

sudo systemctl restart apache2

To verify PHP is working with Apache, create a test PHP file:

echo "<?php phpinfo(); ?>" | sudo tee /var/www/html/info.php

Now, open your web browser and navigate to the following URL, here you should see the PHP information page, confirming that PHP is correctly installed and configured.

http://your_server_ip/info.php
Check PHP Info in Ubuntu
Check PHP Info in Ubuntu

Step 4: Configuring Nginx to Use PHP-FPM

When using Nginx as your web server, PHP is processed through PHP-FPM (FastCGI Process Manager), which is a special service that handles PHP requests and runs them efficiently.

To configure Nginx to use PHP-FPM, you need to edit the default Nginx configuration file.

sudo nano /etc/nginx/sites-available/default

Look for the block that handles PHP files (it should be commented out) and modify it to look like this:

location ~ \.php$ {
    include snippets/fastcgi-php.conf;
    fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
}

After making these changes, save the file and restart Nginx and PHP-FPM to apply the changes:

sudo systemctl restart nginx
sudo systemctl restart php8.3-fpm

To verify PHP is working with Nginx, create a test PHP file similar to the Apache setup:

echo "<?php phpinfo(); ?>" | sudo tee /var/www/html/info.php

Now, open your web browser and navigate to the following URL, here you should see the PHP information page, confirming that PHP is correctly installed and configured.

http://your_server_ip/info.php
Verify PHP Info in Ubuntu
Verify PHP Info in Ubuntu
Conclusion

You have successfully installed PHP 8.3 on Ubuntu 24.04 and configured it to work with both Apache and Nginx.

Make sure to remove the info.php file after testing, as it can expose sensitive information about your PHP configuration:

sudo rm /var/www/html/info.php

With PHP 8.3 installed, you can now explore its new features and improvements, enhancing your web development projects.

Hey TecMint readers,

Exciting news! Every month, our top blog commenters will have the chance to win fantastic rewards, like free Linux eBooks such as RHCE, RHCSA, LFCS, Learn Linux, and Awk, each worth $20!

Learn more about the contest and stand a chance to win by sharing your thoughts below!

Aaron Kili
Aaron Kili is a Linux and F.O.S.S enthusiast, an upcoming Linux SysAdmin, web developer, and currently a content creator for TecMint who loves working with computers and strongly believes in sharing knowledge.

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed)
Was this article helpful? Please add a comment or buy me a coffee to show your appreciation.

10 Comments

Leave a Reply
    • @Gulab,

      Yes, you can install PHP 7 on Ubuntu 14.04 using the following commands.

      $ sudo add-apt-repository ppa:ondrej/php
      $ sudo apt-get update
      $ sudo apt-get install php7.0 php7.0-cli php7.0-fpm php7.0-gd php7.0-json php7.0-mysql php7.0-readline
      $ sudo php -v
      
      Reply
        • @Gulab,

          Here are the commands to install PHP 7.2 on Ubuntu 14.04.

          $ sudo add-apt-repository ppa:ondrej/php
          $ sudo apt-get update
          $ sudo apt-get install php7.2 php7.2-cli php7.2-fpm php7.2-gd php7.2-json php7.2-mysql php7.2-readline
          $ sudo php -v
          

          if you want PHP 7.3 or 7.4, just replace the php7.2 with php7.3 or php7.4.

          Reply
          • not working
            Traceback (most recent call last):
            File “/usr/lib/python3.4/threading.py”, line 920, in _bootstrap_inner
            self.run()
            File “/usr/lib/python3.4/threading.py”, line 868, in run
            self._target(*self._args, **self._kwargs)
            File “/usr/lib/python3/dist-packages/softwareproperties/SoftwareProperties.py”, line 687, in addkey_func
            func(**kwargs)
            File “/usr/lib/python3/dist-packages/softwareproperties/ppa.py”, line 370, in add_key
            return apsk.add_ppa_signing_key()
            File “/usr/lib/python3/dist-packages/softwareproperties/ppa.py”, line 261, in add_ppa_signing_key
            tmp_export_keyring, signing_key_fingerprint, tmp_keyring_dir):
            File “/usr/lib/python3/dist-packages/softwareproperties/ppa.py”, line 210, in _verify_fingerprint
            got_fingerprints = self._get_fingerprints(keyring, keyring_dir)
            File “/usr/lib/python3/dist-packages/softwareproperties/ppa.py”, line 202, in _get_fingerprints
            output = subprocess.check_output(cmd, universal_newlines=True)
            File “/usr/lib/python3.4/subprocess.py”, line 609, in check_output
            output, unused_err = process.communicate(inputdata, timeout=timeout)
            File “/usr/lib/python3.4/subprocess.py”, line 947, in communicate
            stdout = _eintr_retry_call(self.stdout.read)
            File “/usr/lib/python3.4/subprocess.py”, line 491, in _eintr_retry_call
            return func(*args)
            File “/usr/lib/python3.4/encodings/ascii.py”, line 26, in decode
            return codecs.ascii_decode(input, self.errors)[0]
            UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xc5 in position 92: ordinal not in range(128)

Got Something to Say? Join the Discussion...

Thank you for taking the time to share your thoughts with us. We appreciate your decision to leave a comment and value your contribution to the discussion. It's important to note that we moderate all comments in accordance with our comment policy to ensure a respectful and constructive conversation.

Rest assured that your email address will remain private and will not be published or shared with anyone. We prioritize the privacy and security of our users.