Hi,
I try to register a new instance today and got this error message.
Can you please hlep me?
Access to User Support Forum
Thank you for your interest in our support forum. Please note that posting in our user support forum is exclusively available to registered users who have activated our products.
To gain posting privileges:
Need help? If you're experiencing any issues with product activation or forum access, please contact us at team@oduist.com.
Hi,
I try to register a new instance today and got this error message.
Can you please hlep me?
This error typically occurs when Python is unable to verify the SSL certificate of the website due to missing or outdated root certificates in the local system. Here are some solutions to resolve it.
certifi is a Python package that provides the latest CA certificates. You can install or update it using pip:
pip install --upgrade certifi
Then, you can point to certifi's certificate bundle when making the request:
import requests import certifi response = requests.get("https://oduist.com", verify=certifi.where()) print(response.text)
Let me know if this works.
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up
HI,
After executing the solution you provided, I now get this error when I click on 'Submit registration'
How can we fix it?
Best regards.
Internal server error is fixed.
Thanks for the report.