instalar php apt php-curl ubuntu-18.04

Después de Ubuntu 18.04, no se puede instalar php7.2-curl



sudo apt-get install lamp-server^ (2)

Actualizado a 18.04 desde 16.04 hoy usando do-release-upgrade -d

Durante la actualización me informaron que algunos paquetes serían eliminados, entre ellos:

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

Podría volver a instalar imagick y certbot sin problemas, pero si intento instalar php7.2-curl aparece el mensaje:

# 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.

¿Cómo puedo corregir la situación?


Esto puede salvarte:

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

Entonces sudo service apache2 restart


No es necesario agregar un nuevo repositorio. Simplemente haga esto y se instalará la versión 7.2. Recuerda reiniciar php y apache después. También asegúrate de (aunque ya hayas hecho esto) para habilitar el nuevo mod después de:

sudo apt install php-curl sudo a2enmod php7.2

También notará que al final de la instalación de php-curl (que instala php-curl y php7.2-curl ), lo siguiente (Tenga en cuenta que tengo la configuración de FPM, puede parecer diferente si no está usando 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.

Entonces haz lo que dice:

sudo a2enmod proxy_fcgi setenvif sudo a2enconf php7.2-fpm sudo systemctl restart apache2.service