• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

SSL certificate problem?

Eldora

Banned User
Joined
Oct 19, 2009
Messages
604
Reaction score
26
Anyone know what this error means and how to fix it?

I get this error when i try to use paypal ipn to buy points from the website.

[07-Mar-2018 17:00:02 Europe/Paris] cURL error: [60] SSL certificate problem: unable to get local issuer certificate
 
Last edited:
You can try something like this, but its really unsecure:

Code:
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

Somewhere in your script.

Nearly everyone advises you to turn off CURLOPT_SSL_VERIFYPEER, and in fact, countless comments on the PHP manual page for curl_setopt tell you to do this. This is bad, because it allows your nice, encrypted stream of confidential data to be silently hijacked by a bad guy. So, don’t to that! Instead, fix your PHP php.ini configuration.
(Don't turn off CURLOPT_SSL_VERIFYPEER, fix your PHP configuration - PHP - Sysadmins of the North)

Real solution
 
Back
Top