web-dev-qa-db-fra.com

Comment mettre à jour php cURL vers la version 7.36.0?

J'ai php curl 7.19.7 sur mon serveur CentOS, mais je dois passer à la version 7.36.0.

J'ai essayé:

yum update php-curl

Mais j'ai eu:

Loaded plugins: downloadonly, fastestmirror
Loading mirror speeds from cached hostfile
 * epel: mirror.t-home.mk
Setting up Update Process
No Packages marked for Update
7
zafirov

Utiliser le repo city-fan (partie du miroir curl http://curl.haxx.se/download.html#LinuxRedhat )

rpm -Uvh http://www.city-fan.org/ftp/contrib/yum-repo/rhel6/x86_64/city-fan.org-release-2-1.rhel6.noarch.rpm
yum install libcurl

Vous pouvez vérifier la dernière version ici .

Cette mise à jour actuellement curl de 7.19 à 7.40

18
rezizter

Vous pouvez essayer cela, cela a fonctionné pour moi sur RHEL7

  1. créer un nouveau fichier /etc/yum.repos.d/city-fan.repo
  2. coller dedans:

     [CityFan] 
     name = Ville Fan Repo 
     baseurl = http: //www.city-fan.org/ftp/contrib/yum-repo/rhel$releasever/$basearch/
     activé = 1 
     gpgcheck = 0 
    
  3. courir

     miam tout nettoyer 
     miam installer curl 
    
5
carlomas

Essayez les commandes suivantes:

curl-config --version
Sudo rpm -Uvh http://www.city-fan.org/ftp/contrib/yum-repo/city-fan.org-release-1-13.rhel6.noarch.rpm
Sudo yum install libcurl
3
user2292786