Perpetual Newbie 1 Posted April 24 I keep getting an error in Laravel every time I try to make an HTTP request, even when using Guzzle. How can I fix this issue? Thank you! cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://example.com Share this post Link to post Share on other sites
BigFoot 4 Posted April 24 cacert.pem is required for cURL to work properly with HTTPS. Download the latest version of cacert.pem Then add the absolute path to this file in your php.ini in the "curl.cainfo" option, like this: curl.cainfo = C:\php\cacert.pem If you need more information about this, you can find it at https://curl.se/docs/caextract.html Share this post Link to post Share on other sites
Omnipresent 0 Posted April 24 Video solution for this problem: Share this post Link to post Share on other sites