web-dev-qa-db-fra.com

Après la mise à niveau d'Upuntu 18.04, php7.2-curl ne peut plus être installé

Mis à niveau du 18.04 au 18.04 aujourd'hui avec do-release-upgrade -d

Au cours de la mise à niveau, j'ai été informé que certains paquets seraient supprimés, notamment:

Supprimer: libperl5.22 lxc-common Perl-modules-5.22 php-imagick
php7.1-curl php7.2-curl python3-certbot-nginx

Je pourrais réinstaller imagick et certbot sans problème, mais si j'essaye d'installer php7.2-curl, je reçois le message:

# apt install php7.2-curl -y
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 php7.2-curl : Depends: php7.2-common (= 7.2.3-1ubuntu1) but 7.2.4-1+ubuntu16.04.1+deb.sury.org+1 is to be installed
E: Unable to correct problems, you have held broken packages.

Comment puis-je corriger la situation?

24
Arni J

Cela peut vous sauver:

Sudo add-apt-repository ppa:ondrej/php
Sudo apt update
Sudo apt install php7.2-fpm php7.2-Gd php7.2-curl php7.2-mysql php7.2-dev php7.2-cli php7.2-common php7.2-mbstring php7.2-intl php7.2-Zip php7.2-bcmath

Puis Sudo service Apache2 restart

52
Anson Wong

Vous n'avez pas besoin d'ajouter un nouveau dépôt. Faites ceci et la version 7.2 sera installée. N'oubliez pas de redémarrer php et Apache après. Assurez-vous également (vous avez déjà déjà fait cela) d'activer le nouveau mod après:

Sudo apt install php-curl
Sudo a2enmod php7.2

Vous remarquerez probablement aussi qu’à la fin de l’installation de php-curl (qui installe php-curl et php7.2-curl), les éléments suivants (notez que j’ai la configuration FPM, peuvent sembler différents si vous ' ne pas utiliser FPM):

NOTICE: Not enabling PHP 7.2 FPM by default.
NOTICE: To enable PHP 7.2 FPM in Apache2 do:
NOTICE: a2enmod proxy_fcgi setenvif
NOTICE: a2enconf php7.2-fpm
NOTICE: You are seeing this message because you have Apache2 package installed.

Alors fais ce qu'il dit:

Sudo a2enmod proxy_fcgi setenvif
Sudo a2enconf php7.2-fpm
Sudo systemctl restart Apache2.service
1
J-a-n-u-s

L'installation de libcurl4 a fonctionné pour moi en utilisant

apt install libcurl4

Puis installé php7.2-curl, redémarrez Apache2 sans problème.

0
MickC