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 have this code:

$ch = curl_init();  
curl_setopt($ch, CURLOPT_URL, "http://www.infoempleo.com/");  
curl_setopt($ch, CURLOPT_POST, false);  
//curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
curl_setopt($ch, CURLOPT_COOKIEJAR,$cookie );  
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie);
curl_setopt($ch, CURLOPT_HTTPGET ,true);  
curl_setopt($ch, CURLOPT_HEADER, false);  
curl_setopt($ch,CURLOPT_HTTPHEADER,array('HeaderName: HeaderValue'));
  //  curl_setopt($ch,CURLOPT_TIMEOUT,10); 
curl_setopt($ch, CURLOPT_REFERER, '');  
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);  
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
$homepage = curl_exec($ch);
var_dump($homepage);

But is is not working, it is working with google.com but not with http://www.infoempleo.com/. What is wrong in this code?

I tried online ping utility like http://network-tools.com/ and the server is not responding to ping request, but they are responding to http headers. so what do I need to set in the cURL request to make it work ?

But this code works

$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url );

curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");

curl_setopt ($ch, CURLOPT_TIMEOUT, 60);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 0);
curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt ($ch, CURLOPT_REFERER, $url . "blog/wordpress/wp-login.php");

curl_setopt ($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt ($ch, CURLOPT_POST, 1);
$result = curl_exec ($ch);

how ?

share|improve this question
Maybe your IP's been blocked for abusive scraping? What does curl_error($ch) say immediately after you do the curl_exec()? – Marc B Jul 26 '11 at 20:05
It works for me. – Oswald Jul 26 '11 at 20:07
@Marc B I am getting fatal error: Maximum execution time of 30 seconds exceeded in C:\wamp\www\curl2.php on line 37 and this line is curl_exec ($ch); – Vidya Jul 26 '11 at 20:16
Probably your server's IP has been blocked by that site, and is doing it by just ignoring packets from your server, rather than replying with a "host unreachable" or "connection refused" type error. – Marc B Jul 26 '11 at 20:18
@Marc B I updated the code. but second code works how ? as well as only ping is not able to ping server. – Vidya Jul 27 '11 at 2:18

1 Answer

It may restrict user agents. Try to change

//curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");

with

curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
share|improve this answer
this works for me – Stack 101 Jul 26 '11 at 20:16
+1 for the effort :) – Stack 101 Jul 26 '11 at 21:00

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.