Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using curl, and I don't get the url source code as I see it in any browser(open url>view source code), why is it?

here is my code;

function curl_download($Url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $Url);
$agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
curl_setopt ($ch,CURLOPT_VERBOSE,false);
   curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, FALSE);
   curl_setopt($ch,CURLOPT_SSLVERSION,3);
   curl_setopt($ch,CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_TIMEOUT, 0);
curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);
curl_setopt($ch, CURLOPT_FORBID_REUSE, 1);
$output = curl_exec($ch);
curl_close($ch);
return $output;

any ideas?

share|improve this question
What do you get? – SLaks Dec 19 '11 at 2:34
I get a source code, but not the one that I see if I go to the url and look at the source code with a browser. – user1104615 Dec 19 '11 at 2:39
Maybe you are looking into an iframe in the browser? – Dimme Dec 19 '11 at 2:41
Nope.. I do get a source code. The problem is that its a bad source code, like the url I'm trying to get it's source knows that I am not a browser and it gives me a bad source code. – user1104615 Dec 19 '11 at 2:43

closed as too localized by Anna Lear Dec 19 '11 at 5:16

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

After reading your question with comments, I think, that's probably because the code is being modified dynamically by javascript and/or ajax calls post loading and cURL cannot execute JS.

Of course, this is one of the possible reasons. Others would include HTTP referrer based checks and modification by the site owner. Thus if the HTTP referrer in your header is not as expected by the site owner then he may choose to modify what is evident to you.

However, you can try using a combination of Mozilla Firebug and Header Modification plug-in to test if that is the case, through MF. [Not Megan Fox, dude, Mozilla Firefox! ;)]

And if it so, then you may modify the referer header sent through cURL:

curl_setopt($ch, CURLOPT_REFERER, $your_referer);
share|improve this answer
I added a refer, in my code with curl, still not working. And also I tried with get_file_contents() Same bad source code. Any other way? =\ – user1104615 Dec 19 '11 at 2:47
@user1104615 Is it possible to provide the site? – check123 Dec 19 '11 at 2:49
1  
I just changed my browser agent in MF(my megan fox browser :D) to blabla. Opened the url with my browser and it works, doesn't give me that bad source code when I go to view>source – user1104615 Dec 19 '11 at 2:54
1  
If the right-click, view source is different from what cURL is receiving, it's not due to dynamic/asynchronous loading. I suspect there's some munging going on for requests that evaluate as non-browser originating. However... The site may initially set a cookie on the very first page load and then test for that cookie to determine the browser's "realness". I've seen that before. – Jared Farrish Dec 19 '11 at 2:54
1  
@user1104615 - I think at this point if you could show us the comparison of what you're getting on your server, that would be useful. – Jared Farrish Dec 19 '11 at 3:20
show 21 more comments

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