vote up 1 vote down star

I'm trying to fetch the contents of a page using CURL. The page that is doing the fetching is https and the page it is trying to fetch is also https. I'm getting an error "Couldn't resolve host" with all of the settings I try.

$c=curl_init();
curl_setopt($c, CURLOPT_URL,$url);
//curl_setopt($c, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:x.x.x) Gecko/20041107 Firefox/x.x");
curl_setopt ($c, CURLOPT_RETURNTRANSFER, TRUE);
//curl_setopt($c, CURLOPT_SSL_VERIFYPEER, TRUE);
//curl_setopt($c, CURLOPT_SSL_VERIFYHOST, TRUE);
curl_setopt($c, CURLOPT_HEADER, FALSE);

$html=curl_exec($c);

if($html === false) {
    echo curl_error($c);
}
else {
    echo 'Operation completed without any errors';
}	


curl_close($c);

Any ideas?

flag

Are you passing the protocol, https://, as part of the url? – JYelton Aug 27 at 15:03
Yes -- tried str_replace to make it http but that didn't change the error. – swt Aug 27 at 15:11

3 Answers

vote up 0 vote down check

mmhh,

maybe a DNS-Issue?

try your url against this test code:

$_h = curl_init();
curl_setopt($_h, CURLOPT_HEADER, 1);
curl_setopt($_h, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($_h, CURLOPT_HTTPGET, 1);
curl_setopt($_h, CURLOPT_URL, 'YOUR_URL' );
curl_setopt($_h, CURLOPT_DNS_USE_GLOBAL_CACHE, false );
curl_setopt($_h, CURLOPT_DNS_CACHE_TIMEOUT, 2 );

var_dump(curl_exec($_h));
var_dump(curl_getinfo($_h));
var_dump(curl_error($_h));

Found here

link|flag
My system admin fixed a DNS problem, thanks. – swt Aug 29 at 13:44
vote up 0 vote down

That error implies that your machine can't resolve a hostname into an IP address. Are you able to access the host in a web browser from that machine?

link|flag
I am. I can paste the url it's trying to get and it will load fine. I might also note -- this CURL process works fine on my localhost and on a non-https server location. – swt Aug 27 at 15:04
vote up 1 vote down

You may have to enable the HTTPS part:

curl_setopt($c, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($c, CURLOPT_SSL_VERIFYHOST,  2);

And if you need to verify (authenticate yourself) you may need this too:

curl_setopt($c, CURLOPT_USERPWD, 'username:password');

Hope it helps, good luck!

link|flag
This didn't work, but thanks! – swt Aug 27 at 15:11

Your Answer

Get an OpenID
or

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