Author Topic: How to add curl support to PHP 5 in CentOS  (Read 7040 times)

Offline admin

  • Administrator
  • Sr. Member
  • *****
  • Posts: 296
    • View Profile
How to add curl support to PHP 5 in CentOS
« 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.