Question

No PHP 8.0 on Ubuntu 22.04? (8.1 and 7.4 still present)

I just upgraded to Ubuntu 22.04 from 20.04, via DO’s upgrade-in-place script. Everything seemed to work fine, but it appears to have also upgraded me from PHP8.0 to 8.1. Regrettably, not all of my PHP code runs on 8.1 yet, and I need to downgrade to 8.0.

I wouldn’t expect that to be an issue, but sudo apt list only reports entries for php8.1 and php7.4. Did I miss a memo that 8.0 isn’t available, or do I need to install a repo or PPA for some reason?

Or is my install borked somewhere? I have tried sudo apt update again, but that did not solve my problem.


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

KFSys
Site Moderator
Site Moderator badge
August 17, 2022
Accepted Answer

Hi @davidmorgan,

You’ll need to install the specific packages for PHP 8.

First, you need the essentials:

  1. sudo apt install lsb-release ca-certificates apt-transport-https software-properties-common -y

You should already have the above, however, let’s not take any chances. Now, add the PHP repo:

  1. sudo add-apt-repository ppa:ondrej/php

Now you are ready to go. Type in

  1. sudo apt install php8.0

This should install PHP 8 for you. To install any PHP extensions you need to

  1. sudo apt install php8.0-<extension>

Hope that helps!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel