J'ai mis à jour mon ubuntu à 18.04 et maintenant mon curl.so me manque.
Normalement, ce serait ici /usr/lib/php/20160501/curl.so mais c'est parti.
Sur la ligne de commande, je peux utiliser curl mais pas dans mon code php.
php -m | grep curl mène à
Avertissement PHP:
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/20160303/curl.so' - /usr/lib/php/20160303/curl.so: cannot open shared object file: No such file or directory in Unknown on line 0
Une solution rapide serait simplement de placer "un" curl.so dans ce dossier, mais où puis-je obtenir un curl.so?
J'ai essayé de le réinstaller avec apt install php-curl mais ça me donne
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:
php-curl : Depends: php7.2-curl but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
J'utilise toujours ppa: ondrej/php.
Lorsque je vérifie /var/lib/php/7.1/enabled_by_admin
curl est répertorié.
Dans mon /etc/php/7.1/cli/mods_available
curl.ini est là.
Et dans mon /etc/php/7.1/cli/conf.d
le lien symbolique vers cet ini est également là.
wget https://curl.haxx.se/download/curl-7.59.0.tar.gz
cd curl-7.59.o
./configure
make
Sudo make install
aussi n'a pas aidé.
D'abord j'ai fraîchement ajouté le ppa et réinstallé php7.1
Sudo apt-add-repository ppa: ondrej/php Sudo apt-get update Sudo apt install php7.1
Ensuite, j'ai installé php7.1-curl
et le tour est joué, tout fonctionne à nouveau parfaitement.
Le problème était que j'avais une ancienne version de ppa.
Cela a fonctionné pour moi:
Sudo apt-get install curl