Linux 安装php扩展curl
安装php扩展curl的时候
[root@localhost curl]# /home/web/php/bin/phpize
[root@localhost curl]# ./configure --with-php-config=/home/web/php/bin/php-config
报错如下
checking for cURL in default path... not found
configure:error:Pleasereinstallthelibcurldistribution-
easy.h should be in /include/curl/解决办法:
# yum -y install curl-devel
然继续,done
[root@localhost curl]#make
[root@localhost curl]# cd modules/
[root@localhostmodules]#ls
curl.la curl.so接着把curl.so拷贝到php.ini里配置的extention_dir目录里,同时配置
extention=curl.so
重启apache
搞定!
相关推荐
83911535 2020-11-13
曾是土木人 2020-10-31
yegen00 2020-10-21
soralaro 2020-10-11
katanaFlower 2020-09-18
wytzsjzly 2020-08-17
88407710 2020-08-17
ChinaJoeEE 2020-08-16
CyborgLin 2020-08-15
Blueberry 2020-08-15
PinkBean 2020-08-11
katanaFlower 2020-08-03
hunningtu 2020-07-30
阿债的方寸天地 2020-06-28
pingyan 2020-06-25
wytzsjzly 2020-06-25
阳光岛主 2020-06-25
阿债的方寸天地 2020-06-16