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.
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!
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.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Hi @davidmorgan,
You’ll need to install the specific packages for PHP 8.
First, you need the essentials:
You should already have the above, however, let’s not take any chances. Now, add the PHP repo:
Now you are ready to go. Type in
This should install PHP 8 for you. To install any PHP extensions you need to
Hope that helps!