Hi @davidbawiec,
You mentioned that it was a self-signed certificate.
When Wordfence attempts to connect to your site, it tries to verify the certificate with a public CA. However, since your certificate was locally signed, there isn’t a public authority to verify your certificate.
You have a few options:
1. Use a signing agent to create your development’s certificates. Such as CertBot ( https://certbot.eff.org/instructions )
2. Test your site without SSL
3. Disable SSL verification within your testing site. You can do this by adding this line into the file /wp-content/themes/YOUR_THEME/functions.php:
add_filter(’https_ssl_verify’, ’__return_false’);
Only add this on a testing site, never on a live site.
Dave
**************************
Lägg till i functions.php:
// https://wordpress.org/support/topic/curl-error-60-ssl-certificate-problem-4/
add_filter(’https_ssl_verify’, ’__return_false’);
OBS kontrollerar INTE https!
– 200620 https://stipet.se/ssb01, Adminpanel, Hem, Hälsostatus för webbplats, 1 kritiskt problem.