Hello,
First of all, thank you for your purchase.
It seems that your site has an expired or a self-signed SSL certificate.
When Aiomatic attempts to connect to OpenAI’s API, it tries to verify the SSL certificate of your site. However, since your certificate is invalid, this check fails.
You have a few options to solve this:
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 (http://)
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, on live sites you should update your SSL certificate and make it valid.
Let me know if this helped.
Regards, Szabi – CodeRevolution.