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.

Upon visiting a given link using my browser, it's working just as planned. However, when I'm trying to access it via cURL, it just isn't working.

Here's my code:

<?php
    $url='http://example.com';
    $ch = curl_init ($url);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
    $rawdata = curl_exec($ch);
    if(curl_errno($ch))
{
    echo 'Curl error: ' . curl_error($ch);
}

    curl_close ($ch);
?>
share|improve this question
What does 'not working' mean? What's the error message? – Maerlyn Aug 22 '11 at 8:12
...and what does "through file" mean? I don't see any file-related snippets. – ninetwozero Aug 22 '11 at 8:14
^^ he meant through cURL (I suppose) – Atif Mohammed Ameenuddin Aug 22 '11 at 8:17
@Maerlyn no error message at all. – Ashutosh Mishra Aug 22 '11 at 8:17
@ninetwozero yes thru CURL – Ashutosh Mishra Aug 22 '11 at 8:18
show 2 more comments

2 Answers

up vote 1 down vote accepted

Are you 100% positive you enabled lib_curl in php.ini? A blank cURL response is most likely due to the module not being enabled. Try the below:

$ch = curl_init( "http://stackoverflow.com" );
var_dump ( curl_exec( $ch ));

if there is output, the page could be redirecting you, in which case try adding

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true)     // follow redirects

CURLOPT_AUTOREFERER => true   // may also help depending on the site...
share|improve this answer
your above code gives string(0) "" as output – Ashutosh Mishra Aug 22 '11 at 10:19
as I suspected, libcurl is not enabled. Open your php.ini file and look for this line: ;extension=php_curl.dll remove the ";" then retry. If that does not work please post the result of the following code: <?php ## Test if cURL is working ## ## SCRIPT BY WWW.WEBUNE.COM (please do not remove)## echo '<pre>'; var_dump(curl_version()); echo '</pre>'; ?> – Dave Aug 22 '11 at 10:25
it gives array(9) { ["version_number"]=> int(464131) ["age"]=> int(3) ["features"]=> int(1597) ["ssl_version_number"]=> int(0) ["version"]=> string(6) "7.21.3" ["host"]=> string(17) "i686-pc-linux-gnu" ["ssl_version"]=> string(14) "OpenSSL/0.9.8o" ["libz_version"]=> string(7) "1.2.3.4" – Ashutosh Mishra Aug 22 '11 at 10:37
Interesting... it looks like your libcurl is setup correctly, but this is definitely not a code related issue. It looks like you are running linux, maybe try reinstalling the associated packages. On a debian system you would run "sudo apt-get install --reinstall curl libcurl3 libcurl3-dev php5-curl"..might have to go so far as purging configs, but it is for sure a server issue. – Dave Aug 22 '11 at 10:46
done , not working :( – Ashutosh Mishra Aug 22 '11 at 11:10
show 2 more comments

Did you enable lib curl?

on XAMPP
on WAMP


$url='http://example.com';
    $ch = curl_init ($url);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
    curl_setopt($ch,CURLOPT_MAXREDIRS,30); 
    curl_setopt($ch,CURLOPT_FOLLOWLOCATION,1); 
    curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 5.1; rv:6.0) Gecko/20100101 Firefox/6.0'); 
    $rawdata = curl_exec($ch);
    if(curl_errno($ch))
    {
        echo 'Curl error: ' . curl_error($ch);
    }
    echo $rawdata;
    curl_close ($ch);
share|improve this answer
i have checked that by fetching other url.its working :(. m using LAMP – Ashutosh Mishra Aug 22 '11 at 8:15
echo $rawdata; or var_dump($rawdata); – Atif Mohammed Ameenuddin Aug 22 '11 at 8:18
var_dump($rawdata) gives string(0) "" – Ashutosh Mishra Aug 22 '11 at 8:21
added useragent, try this code. (I suppose your website doesn't want to show up to bots, people usually do that to avoid spam) – Atif Mohammed Ameenuddin Aug 22 '11 at 8:22
thanks..but its not working. echo $rawdata is giving blank – Ashutosh Mishra Aug 22 '11 at 8:26
show 4 more comments

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.