Reputation: 1
Hey I wanted to update to PHP 7, because I need it for my CMS...
And when I type in apt-get update
, I get this error:
W: Failed to fetch ppa.launchpad.net/fossfreedom/packagefixes/ubuntu/dist
s/jessie/main/binary-amd64/Packages 404 Not FoundW: Failed to fetch ppa.launchpad.net/fossfreedom/packagefixes/ubuntu/dist
s/jessie/main/binary-i386/Packages 404 Not FoundW: Failed to fetch ppa.launchpad.net/ondrej/php/ubuntu/dists/jessie/main/
binary-amd64/Packages 404 Not FoundW: Failed to fetch ppa.launchpad.net/ondrej/php/ubuntu/dists/jessie/main/
binary-i386/Packages 404 Not FoundE: Some index files failed to download. They have been ignored, or old ones used
instead.
Hoping for a solution.
Upvotes: 0
Views: 3115
Reputation: 1050
If you are trying to install higher php version you should use corresponding guide for your system. This one, for example:
https://tecadmin.net/install-php7-on-debian/#
Hope that helps!
Upvotes: 0
Reputation: 1936
You are getting these errors because your PPA
repositories don't provide packages for your distribution Debian jessie
The most probable that it's happening is that the PPA
is not longer maintained and needs to be removed
So remove these PPA's
from your apt source list and use others instead here How can I fix a 404 Error when using a PPA or updating my package lists?
Upvotes: 2