Developers Heaven Forum

Operating Systems => Lunix & Unix => Topic started by: admin on January 01, 2012, 11:55:27 PM

Title: How to add curl support to PHP 5 in CentOS
Post by: admin on January 01, 2012, 11:55:27 PM
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.