0

I'm trying to install PHP5.3 on an Ubuntu server, I've tried the following:

How can I achieve this?

Nichm
  • 1
  • 1
    Given the age of PHP 5.3, it is unlikely that you’ll find a reliable repository offering a direct install for 22.04 or newer. That said, Docker is made for situations like this and would be the most reliable, repeatable, and responsible way to have an EOL version of PHP on a current release of Ubuntu – matigo Mar 05 '24 at 14:26

1 Answers1

0

You can try using this below command to install which is compatible with ubuntu 22.04.

sudo add-apt-repository ppa:cappelikan/ppa
sudo apt update

you can find the details as shown below Go to the URL: https://launchpad.net/ubuntu/+ppas Search cappelikan and you will find the details for the ppa supporting Ubuntu 22.04 enter image description here

Thanks

user68186
  • 33,360