I am trying to upgrade php7.4 version but i am getting this issue “Unable to locate package php7.4” on debian Debian 9.4
and i check shources.list
deb http://mirrors.digitalocean.com/debian stretch main contrib non-free deb-src http://mirrors.digitalocean.com/debian stretch main contrib non-free
deb http://security.debian.org stretch/updates main contrib non-free deb-src http://security.debian.org stretch/updates main contrib non-free deb http://mirrors.digitalocean.com/debian stretch-updates main contrib non-free deb-src http://mirrors.digitalocean.com/debian stretch-updates main contrib non-free
wrong on shources.list or what? could you solve please?
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!
Hi @dwiady,
In order to install PHP 7.4, you need to download and store PPA repository in a file on your Debian Server + the GPG key. To do so, run the following commands:
sudo apt -y install lsb-release apt-transport-https ca-certificates
sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
Once you’ve done this, add the repository:
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php.list
Now Update your System and install your PHP version:
sudo apt update
sudo apt -y install php7.4
Regards, KFSys
This doesn’t seem to work anymore?.. Is there another way of doing this?
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.