Answers for "curl: (60) ssl certificate problem: self signed certificate"

PHP
0

cURL error 60: SSL certificate problem:

windows & Wamp solution:

1. go to "https://curl.se/docs/caextract.html" and download "cacert.pem"
2. Put it in this directory "C:wamp64cacert.pem"
3. go to "C:wamp64binphpYOUR_PHP_VERSIONphp.ini" and put those two lines:
		- curl.cainfo = "C:wamp64cacert.pem"
        - openssl.cafile="C:wamp64cacert.pem"
Posted by: Guest on February-26-2022
0

CURL error 60: SSL certificate problem: self signed certificate in certificate chain

#INI Setting
curl.cainfo = <absolute_path_to> cacert.pem
Posted by: Guest on October-06-2021

Code answers related to "curl: (60) ssl certificate problem: self signed certificate"

Browse Popular Code Answers by Language