I am using the \"Hello World\" of Php Parse Sdk
My code:
option 1:
You can follow the url http://curl.haxx.se/ca/cacert.pem to download cacert.pem file. Then go to php.ini set curl.cainfo = "c:/cacert.pem"
.
option 2:
try to find the code curl_setopt($c, CURLOPT_URL, $url);
in your project then add this code curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, TRUE);
before.