web-dev-qa-db-fra.com

Je ne parviens pas à installer PHP5 dans Ubuntu 16.04

root@areeb-Inspiron-3420:/var/www/html# apt install php5
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package php5 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'php5' has no installation candidate
root@areeb-Inspiron-3420:/var/www/html# apt-get install libapache2-mod-php5
Reading package lists... Done
Building dependency tree... 50%
Building dependency tree       
Reading state information... Done
Package libapache2-mod-php5 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libapache2-mod-php5' has no installation candidate

Qu'est-ce que je devrais faire maintenant?

13
Areeb Durani

16.04 n'a pas PHP 5 dans les référentiels officiels. Installez un système 14.04 ou utilisez this PPA .

1
fkraiem

Ubuntu 16.04 LTS est livré avec PHP 7.0. Pour l'installer, vous devez exécuter:

Sudo apt-get install php

Ou choisissez plutôt un PHP Web SAPI spécifique, vous avez probablement besoin d'une prise en charge pour Apache2:

Sudo apt-get install libapache2-mod-php php

Ou PHP FPM

Sudo apt-get install php-fpm php

Si vous avez spécifiquement besoin de PHP 5.x, vous devez utiliser ppa:ondrej/php et installer, par exemple. PHP 5.6 pour Apache2:

Sudo apt-get install php5.6 libapache2-mod-php5.6
20
oerdnj