Atualizei meu Ubuntu para o 18.04 e agora sinto falta do meu curl.so.
Normalmente, seria aqui /usr/lib/php/20160501/curl.so, mas desapareceu.
Na linha de comando, posso usar o curl, mas não no meu código php.
php -m | grep curl leva a
Aviso do 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
Uma solução rápida seria apenas colocar "a" curl.so nessa pasta, mas onde eu recebo um curl.so?
Eu tentei reinstalá-lo com o apt install php-curl, mas isso me dá
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.
Ainda estou usando ppa: ondrej / php.
Quando eu verifico /var/lib/php/7.1/enabled_by_admin
curl é listado.
No meu /etc/php/7.1/cli/mods_available
curl.ini está lá.
E no meu /etc/php/7.1/cli/conf.d
, o link simbólico para esse ini também está lá.
wget https://curl.haxx.se/download/curl-7.59.0.tar.gz
cd curl-7.59.o
./configure
make
sudo make install
também não ajudou.