When you are trying to make a cURL request via https protocol, the error can appear: error:0D0C50A1:asn1 encoding routines:ASN1_item_verify:unknown message digest algorithm To resolve this issue, disable the CURLOPT_SSL_VERIFYPEER cURL option: $hCurl = curl_init($sUrl); curl_setopt($hCurl, CURLOPT_SSL_VERIFYPEER, false);
If you enjoy our post, feel free to subscribes to our rss feeds
