News:

To still receiving newsletters from us please subscribe to our Newsletters:
http://tech.groups.yahoo.com/group/developers-Heaven/

Main Menu

How to add curl support to PHP 5 in CentOS

Started by admin, January 01, 2012, 04:55:27 PM

Previous topic - Next topic

admin

How to add curl support to PHP 5 in CentOS?

Installing php-common did the trick for me
yum install php-common

You can also specifically install the php-curl extension
yum install php-curl

Then uncomment the line
;extension=php_curl.dll

in php.ini, and then restart the Apache service.