Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.

Join them; it only takes a minute:

Sign up
Join the Stack Overflow community to:
  1. Ask programming questions
  2. Answer and help your peers
  3. Get recognized for your expertise

How to add curl support to PHP 5 in CentOS ?

After installing curl and curl-devel, what are the things that I need to do to setup curl in PHP 5

share|improve this question

Had the same problem. 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
share|improve this answer

Curl support should already be built into PHP for CentOS 5 (according to http://www.centos.org/modules/newbb/viewtopic.php?topic_id=17226).

Did you restart apache after installing curl? What error messages do you get?

BTW This question seems to belong on serverfault...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.