I know it was answered before, i'm just wondering why nothing works for me:
If i want it to be fixed (this error is when i do the paypal ipn stuff) i need to do the following:
Go to my php.ini, at the end add the following:
curl.cainfo=C:\cacert.pem
right? well, it's not working, so are those:
curl.cainfo="C:\cacert.pem"
curl_setopt($ch,CURLOPT_CAPATH, "./cacert.pem");
curl_setopt($ch, CURLOPT_CAINFO, "C:\cacert.pem");
Nothing works, i downloaded it from this site: http://curl.haxx.se/docs/caextract.html
What is missing?
(I don't know if it's worth mentioning, but im using windows with wamp, and localtunnel to test paypal IPN locally)
What could be the reason none of the above are working, all the other tutorials tells the same, but seems nothing to work for me, Things get moving only when i do this:
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
Which i know it's not good, but i tried everything~!