Jump to content

Krydos

Chief Executive Officer
  • Posts

    23,075
  • Joined

  • Last visited

  • Days Won

    792

Everything posted by Krydos

  1. Another password reset link has been emailed to you.
  2. You'll need to renew your account now https://heliohost.org/renew/
  3. I tested it out a bit myself, and here is what I came up with #!/usr/bin/python3.10 from __future__ import print_function import sys import mysql.connector from mysql.connector.constants import ClientFlag print("Content-Type: text/html\n\n") config = { 'user': 'krydos_test', 'password': '<removed>', 'database': 'krydos_test', 'host': 'tommy2.heliohost.org', 'client_flags': [ClientFlag.SSL] } cnx = mysql.connector.connect(**config) cur = cnx.cursor(buffered=True) cur.execute("show status like 'ssl_cipher'") print(cur.fetchone()) print("<br>") cur.execute("select * from test") result = cur.fetchall() for row in result: print(row) cur.close() cnx.close() You can see the script in action at https://krydos2.heliohost.org/mysql_ssl.py which is running on Johnny and connecting securely to a MySQL database on Tommy. Please note: There are no ca.pem or any other client keys or client certificates needed.
  4. Well, I think the guides you're following assume that the server certificate is self-signed, which explains why you think you need to include the ca.pem and everything. Our certificate is issued by Let's Encrypt (not self-signed) and any modern OS should accept secure connections to it without needing the chain. And no, we're not going to give you the key because then the SSL is compromised and actually less secure than not using SSL at all.
  5. You've been emailed a link to reset your password.
  6. The MySQL server doesn't use the SSL certificate for your domain. MySQL's SSL is configured with the certificate for the domain tommy2.heliohost.org. Use that for your host.
  7. You still can't use password authentication to send emails through Gmail. You have to use xoauth to send through Gmail, or use some other service other than Gmail to use password authentication.
  8. If you use the Brave browser you can now donate to us by clicking the triangle shape while viewing heliohost.org or helionet.org or Plesk, and then click send contribution. If you have auto-contribute enabled you can donate to us simply by using our website and forum as you normally would. If you're not familiar with the Brave browser check out https://privacytests.org/ Brave is based on Chromium just like Chrome and Edge is, but has a built in ad-blocker and annoyance blocker that is better than most extensions you can install on any of the other browsers. You can even get paid to visit websites if you enable the option in the settings and set up a crypto wallet. As a non-profit that is fully funded by advertising revenue and donations we appreciate you viewing our ads to help us stay in business, but if you use an ad-blocker this is a great way to support us with donations instead of viewing the ads. You can even disable the Brave shields to view our ads and auto-contribute while using our website at the same time for double the donations. Let us know if you have any questions.
  9. What mail server are you using to send now?
  10. What host are you using? 65.19.141.77? 2001:470:1:1ee::2002? tommy2.heliohost.org? Your domain? Something else?
  11. What host are you using? Is the Django app running on our servers?
  12. A password reset link has been emailed to you.
  13. The first two support tickets got flagged as spam by Google. Every few days I check the spam box and flag things as not spam. Not sure why Google thinks your emails are spam.
  14. Sounds good. I'm going to mark this ticket as solved. Let us know if you need help with anything else.
  15. Since you're trying to connect to Gmail you have to use xoauth as they recently disabled simple password authentication. Check out https://github.com/PHPMailer/PHPMailer/blob/master/examples/gmail_xoauth.phps
  16. What SMTP host are you trying to connect to? Host, port, etc?
  17. Look at https://github.com/PHPMailer/PHPMailer#installation--loading and compare it to yours You're missing this line require 'path/to/PHPMailer/src/Exception.php'; So of course you get an error saying because you didn't load the code for it.
  18. That's a pretty good price. Does it come with a dedicated IPv4? Since you have an account on Tommy you can set your MX records to 65.19.141.77 or tommy2.heliohost.org to continue receiving your mail through Plesk. You can set your NS records to ns1.heliohost.org and ns2.heliohost.org if you want me to create the MX record for you, but you can use any external DNS provider as well, such as a free Cloudflare account, and set the MX record yourself.
  19. It looks like Lucee only needs 256 MB ram (1 GB recommended) and 1 GB of hard drive space (10 GB recommended) and will run on Ubuntu 22 (or pretty much anything.) You could easily run that on a Mercury VPS. Here is the system requirements https://docs.lucee.org/guides/getting-started/system-requirements.html and here is a guide on how to install it https://docs.lucee.org/guides/installing-lucee/installation-linux/linux-ubuntu-quick-video-guide.html $80 for how long? We can do 2 CPUs, 4 GB ram, and 50 GB storage for $70.20 for 6 months. https://heliohost.org/vps/subscription/?mem=4&cpu=2&hdd=50&os=ubuntu22 Yeah, you can use our servers for email hosting, or any kind of hosting. You just can't send spam, or violate any of our other terms.
  20. It looks like you have the wrong MariaDB username or password. Double check those values.
  21. Your rebuild has been started and you should get an email when it finishes.
  22. We originally thought that it was only Katie VPS that were affected, but after a while some of the other VPS were having issues as well. After the filesystem scan finished I went through and made sure every VPS was powered on and not locked up, etc. Sounds good! I used the command systemctl restart php7.4-fpm.service and it seems like PHP is working again. Another person reported a lot of PHP 500 errors after the filesystem scan ended and they had to restart PHP too. That is the Hestia login page where you can login to your Hestia control panel. Unable to connect may be a wrong username or password maybe. If everything is working well enough it may be best to just leave everything alone for now. If you have more free time later on we can get you upgraded if you want. Just let us know.
×
×
  • Create New...