Skip to Content

Welcome!

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:

  • Download and install one of our product
  • Complete the product registration process
  • Use the account credentials created during activation to access the forum.

Need help? If you're experiencing any issues with product activation or forum access, please contact us at team@oduist.com.

Sign up

This question has been flagged
1 Reply
61 Views

Hi, 

I try to register a new instance today and got this error message. 


Can you please hlep me?

Avatar
Discard
Author

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.

Best Answer

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.

Avatar
Discard