Wordpress Cron Error "SSL certificate: unable to get local issuer certificate" Wordpress Cron Error "SSL certificate: unable to get local issuer certificate" wordpress wordpress

Wordpress Cron Error "SSL certificate: unable to get local issuer certificate"


What version of Wordpress are you running? If its prior to version 3.7 the solution might be to add these lines at the very end of your wp-config.php:

add_filter('https_ssl_verify', '__return_false');add_filter('https_local_ssl_verify', '__return_false');

I made a small guide here:

http://codeontrack.com/fix-wordpress-and-plugins-fail-on-update-ssl-certificate-problem-unable-to-get-local-issuer-certificate/


In my case there was a problem with certificate itself.

I didn't create bundle like this:

#cat public.crt intermediate.crt >> bundle.crt

instead I used the public.crt only.

So, if you have intermediate certificate just try create a bundle.

Be careful, the order of certificates in the bundle - matters, public.crt must go first.