How to Downgrade PHP 8.2 to 8.1 in Ubuntu

Websolutionstuff | Nov-01-2023 | Categories : PHP

Hey there, I recently found myself in a situation where I needed to downgrade my PHP version from 8.2 to 8.1 on my Ubuntu server. It's not as complicated as it may sound, and I'm here to guide you through the process step by step.

Whether you've encountered compatibility issues or simply need to switch back to PHP 8.1 for a specific project, this article will help you make the transition smoothly.

Let's get started with downgrading PHP 8.2 to 8.1 on Ubuntu!

Downgrading PHP from version 8.2 to 8.1 in Ubuntu involves several steps, including removing PHP 8.2 and installing PHP 8.1. Here's a step-by-step guide to help you with this process:

Step 1: Check Your Current PHP Version

Before downgrading, make sure you're running PHP 8.2. You can check your current PHP version using the command.

php -v

This command will display your PHP version. If it's 8.2, proceed with the downgrade.

 

Step 2: Remove PHP 8.2

First, remove PHP 8.2 and its related packages using the following commands.

sudo apt-get purge php8.2-common
sudo apt-get autoremove

 

Step 3: Add PHP 8.1 Repository

You need to add the repository for PHP 8.1. You can use the ondrej/php repository for this purpose.

sudo add-apt-repository ppa:ondrej/php
sudo apt-get update

 

Step 4: Install PHP 8.1

Now, install PHP 8.1 and the necessary PHP modules. You can install PHP and some commonly used extensions with the following command.

sudo apt-get install php8.1 php8.1-common php8.1-cli

You can also install additional PHP extensions depending on your project's requirements.

 

Step 5: Verify PHP 8.1 Installation

After the installation is complete, check the PHP version to make sure you're now running PHP 8.1.

php -v

It should display PHP 8.1.x.

 

Step 6: Update Your Web Server Configuration

If you are using a web server like Apache or Nginx, you'll need to update the configuration to use PHP 8.1. For Apache, you can use the following command to enable the PHP 8.1 module.

sudo a2enmod php8.1

For Nginx, you'll need to update your site configuration to use PHP 8.1

 

Step 7: Restart Your Web Server

After updating the web server configuration, restart your web server to apply the changes:

For Apache:

sudo systemctl restart apache2

For Nginx:

sudo systemctl restart nginx

 

Step 8: Test Your PHP Configuration

Create a PHP info file to test if PHP 8.1 is functioning correctly. Use a text editor to create a file named info.php in your web server's root directory (e.g., /var/www/html/), and add the following content:

<?php
phpinfo();
?>

Access this file from your web browser (e.g., http://your-server-ip/info.php) and verify that it shows PHP 8.1 information.

 

Step 9: Cleanup

You can remove the info.php file after testing, and you may also want to remove PHP 8.2-related configuration files if you no longer need them.

That's it! You've successfully downgraded PHP from version 8.2 to 8.1 on your Ubuntu server.

 


You might also like:

Recommended Post
Featured Post
jQuery After And Before Example
jQuery After And Before Exampl...

In this article I will give you example of jquery after() and before() method. The after() method inserts spec...

Read More

Dec-10-2021

How to Install PHP JSON Extension in Ubuntu 23.04
How to Install PHP JSON Extens...

Hey there! If you're working with PHP on Ubuntu 23.04 and find yourself needing JSON support, you're in the righ...

Read More

Feb-05-2024

How to Use Bitmasks for Efficient Data Filtering?
How to Use Bitmasks for Effici...

Data filtering might not sound like the most thrilling topic, but when it comes to processing large volumes of informati...

Read More

Oct-25-2023

How To Add Action Button In Angular 15 Material Datepicker
How To Add Action Button In An...

In this tutorial, I will guide you through the process of adding an action button to the Angular 15 Material datepicker...

Read More

Jul-07-2023