web-dev-qa-db-fra.com

Comment installer curl dans php5?

J'ai actuellement PHP 5.3 installé avec Apache dans 10.04 Lucid. Comment puis-je ajouter les bibliothèques PHP Curl? Dois-je installer d'autres dépendances pour curl?

202
Darren Newton

Je crois que le paquet php5-curl devrait faire l'affaire. Utilisez le gestionnaire de paquets de votre choix et vous devrez prendre en charge votre dépôt.

Sudo apt-get install php5-curl

Vous devrez ensuite redémarrer le serveur:

Sudo service Apache2 restart

Alternativement, si vous utilisez php-fpm, vous devrez redémarrer php5-fpm à la place.

Sudo service php5-fpm restart
296
KFro

Pour la version Subversion php5.6, utilisez la commande suivante (testée pour Ubuntu 14.04):

Sudo apt-get install software-properties-common
Sudo add-apt-repository ppa:ondrej/php
Sudo apt-get update
Sudo apt-get upgrade
Sudo apt-get install php5.6
php — version
Sudo apt-get install php5.6-curl
10
Mona Jalal

Ma conf: Ubuntu 11.10, déjà installé mysql, php5 et apache2, avant d'installer php5-curl dans un terminal, je l'ai fait:

éditer la liste des sources comme:

Sudo -H gedit /etc/apt/sources.list

vous pouvez vérifier votre configuration dans http://repogen.simplylinux.ch/

Prochaine commande:

apt-get install aptitude

Prochaine commande:

aptitude install php5-curl

Vous obtenez quelque chose comme ça:

The following NEW packages will be installed:
php5-curl{b} 
0 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 27.1 kB of archives. After unpacking 127 kB will be used.
The following packages have unmet dependencies:
php5-curl: Depends: php5-common (= 5.3.6-13ubuntu3.1) but 5.3.6-13ubuntu3.8 is installed.
The following actions will resolve these dependencies:

Keep the following packages at their current version:
1)     php5-curl [Not Installed]                          

Accept this solution? [Y/n/q/?] n

Votre réponse ici est n

Les lignes suivantes sont imprimées:

The following actions will resolve these dependencies:

Downgrade the following packages:                                             
1)     libapache2-mod-php5 [5.3.6-13ubuntu3.8 (now) -> 5.3.6-13ubuntu3.1 (oneiric)]
2)     php5 [5.3.6-13ubuntu3.8 (now) -> 5.3.6-13ubuntu3.1 (oneiric)]               
3)     php5-cli [5.3.6-13ubuntu3.8 (now) -> 5.3.6-13ubuntu3.1 (oneiric)]           
4)     php5-common [5.3.6-13ubuntu3.8 (now) -> 5.3.6-13ubuntu3.1 (oneiric)]        
5)     php5-Gd [5.3.6-13ubuntu3.8 (now) -> 5.3.6-13ubuntu3.1 (oneiric)]            
6)     php5-mysql [5.3.6-13ubuntu3.8 (now) -> 5.3.6-13ubuntu3.1 (oneiric)]         

Accept this solution? [Y/n/q/?] y

Votre réponse ici est y.

Dans votre navigateur, ouvrez phpinfo (), vérifiez la propriété:

extension_dir   /usr/lib/php5/20090626+lfs

Dans ce dossier, vous devriez maintenant avoir curl.so

Editer le fichier php.ini

nano /etc/php5/Apache2/php.ini

trouver "extensions dynamiques" ajouter le code ci-dessous:

extension=curl.so

Après cela, redémarrez Apache2 et vérifiez phpinfo (), curl doit être activé

7
Matija-cro

solution complète pour installer LAMP et extension cURL:

Sudo apt-get update
Sudo apt-get install php5

Sudo apt-get install libapache2-mod-php5

Sudo apt-get install curl libcurl3 libcurl3-dev php5-curl

et alors:

cd /etc/php5/Apache2/

Sudo nano php.ini

ajoutez cette commande: extension=curl.so

la dernière chose restart Apache

5
Aragon

Vous devez installer le paquet php5-curl.

Sudo apt-get install php5-curl
4
Astiam

Exécuter la commande suivante

Sudo apt-get install curl libcurl3 libcurl3-dev php5-mcrypt php5-curl
2
user11271

Pour php 5.6 cela fera l'affaire:

Sudo apt-get install php5.6-curl

Sudo service Apache2 restart
1
Achraf JEDAY