Reputation: 10790
I hope you wont vote my post down cause I dont have code to show for but its a very general question. When I do a curl call to paypal, rather I get a response back or not, curl_getinfo() returns 0. I am getting a intermitten resposne. sometimes I get a response, sometimes I get false, but in either case, I get no error number or getinfo.
So I guess my question is... Is this issue a common issue, is there a setting I can use to get "getinfo()" to actually return something
Upvotes: 0
Views: 207
Reputation: 1104
You should also try checking the error messages in curl_error(). You might need to do this once after each curl_* function.
Curl comes with an outdated file to authenticate HTTPS certificates from.
get the new one from:
http://curl.haxx.se/ca/cacert.pem
save it into some dir on your site
and add
curl_setopt ($curl_ch, CURLOPT_CAINFO, dirname(FILE)."/cacert.pem");
Upvotes: 1