Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been using cURL to get the output of an external page and it's worked great for months, but suddenly it stopped working. My code is like this:

$ch = curl_init($URL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);

The URL is valid, I checked that it still works and it does, and through debugging I found that the $output variable's value is false, which according to the PHP manual is what curl_exec() returns on failure.

So, after working for a long time, and without any changes to my code (that I know of), the cURL transfer is suddenly not working.

How can I debug why it's not working?

share|improve this question

2 Answers

up vote 10 down vote accepted

I would start with curl_error()

share|improve this answer
upvote this into the stratosphere! – chris Dec 31 '12 at 19:49

You can use the curl_error() function to see the error returned by curl.

share|improve this answer
@DavidHarris I've rolled back to the original but I thought the point of editing and having syntax options was to make sure everything was universal, easy to read and looked like any other post. – Nile Dec 31 '12 at 19:18

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.