Jump to content

This stream auto-updates

  1. Past hour
  2. keep those as it is: 1- project boomarenio.site/atlas 2- file prompt.php reset rest
  3. Today
  4. You've been resuspended for failing to make one of the changes above. Please let us know if you have any questions.
  5. I've added those domains to your account for you. Please note that it may take up to 2 hours for the domain changes to take effect, and they will not work until you set up your DNS with your domain registrar. To configure your DNS, please see the steps provided on our Wiki to either set NS records pointed at the HelioHost nameservers, or create A/AAAA records and point them to your server's IPv4/IPv6 address: https://wiki.helionet.org/Addon_Domains#Custom_Addon_Domains If after a full 2 hours they don't work on your side, please make sure you clear your web browser cache: https://wiki.helionet.org/Clear_Your_Cache
  6. Hi, Newbie here, but how do I add an AAAA record to my DNS, is there an option for IPv6 hosting available here? I checked an online DNS Lookup tool and the IPv6 DNS entry lists a different owner for the same domain that I am hosting on your servers. **Updated : The lookup was faulty, my apologies, cross-checked from another source and I am ok now.
  7. I've added that domain to your account for you. Please note that it may take up to 2 hours for the domain change to take effect. If after a full 2 hours it doesn't work on your side, please make sure you clear your web browser cache: https://wiki.helionet.org/Clear_Your_Cache
  8. Yesterday
  9. 0 MB free swap and 1920 MB swap in use. Like I said the last time this came up, you will want to continue increasing your memory until there is only 0 MB to 50 MB swapped. The other option is to use software that uses less memory. It's not a connectivity issue, it's your VPS is grinding to halt because you're trying to fit too much software into too small of a box. Try to imagine a 30 pound cat trying to fit into a 4 inch box. That's what you're doing to this VPS. If you want to increase the memory as a free trial for a few days to test it out we can do that.
  10. Sounds like you need your own VSP if you need shell access: https://wiki.helionet.org/FAQ#Can_I_use_SSH? Here is what Perplexity said about your situation: Short answer: no, not in the way you’re hoping. Gunicorn is a long-running WSGI server process, and Flask’s docs describe it as something you run as a production server instead of the built-in development server. If HelioHost gives you no shell and no way to start a persistent process, you usually can’t launch Gunicorn yourself from shared hosting alone. What “pure Python” can do Gunicorn does have a Python entry point, so technically you can start it from Python code with something like from gunicorn.app.wsgiapp import run and then calling run() after setting sys.argv. That still does not remove the core requirement: something must execute that Python file and keep the server process alive. So “pure Python” is only a different launch mechanism, not a replacement for shell/process management. Why this is a hosting problem Flask’s deployment docs distinguish between the application and the WSGI server, and Gunicorn’s own docs show it as a server you install and run as a process. HelioHost’s Python docs emphasize CGI as the easy shared-hosting path, which is a very different execution model from Gunicorn’s always-on worker model. In other words, if your account can only run scripts on demand, Gunicorn is the wrong fit unless HelioHost exposes a WSGI startup hook or some equivalent service manager. Practical options Use HelioHost’s supported Python method, which appears to be CGI for shared hosting. If HelioHost provides a WSGI interface or app startup configuration, point it at your Flask app rather than trying to type gunicorn main:app yourself. Move the app to an environment where you control process startup, such as a VPS, container host, or a platform that supports a process command. Direct answer to your question You can write a small Python launcher for Gunicorn, but that only helps if HelioHost lets you execute that launcher as the service entrypoint. Without shell access or some admin-defined startup command, you generally cannot use Gunicorn on shared hosting in the normal way.
  11. Last week
  12. Ok, I'm sorry for my mess, it won't repeat ever. Thanks for the support!!
  13. Subdomain added. I also went ahead and changed the main domain for you. Both can take up to 2 hours to start working. You can also download a backup before the change at https://heliohost.org/backup
  14. Looks good. I canceled your broken subscription, and linked the new subscription to your VPS. You should have received an invoice for the payment, and your expiration date is now 2026-09-18. Stripe should try to automatically bill for another $41.85 on that date. If it fails for some reason we'll email you. Thanks!
  15. Subdomain added. It can take up to 2 hours to start working.
  16. Users cannot yet add domains on their own, but staff can add domains for you. Please let us know the full domain name you want added, including the top-level domain (TLD). If you're using HelioHost's domains, let us know if you want the helioho.st or heliohost.us ending. If you've purchased a custom domain, make sure you let us know the domain including if it's a .com, .net, etc. You can read more about addon domains here: https://wiki.helionet.org/Addon_Domains
  17. See https://helionet.org/index/topic/67256-account-unsuspension/?do=getNewComment
  18. Account rushi1819 has been unsuspended. It may take a few minutes before you can login again, the domains can take up to two hours to start working.
  19. Yeah I can login now, thanks for your help!
  20. What is the reason you can't use psycopg2 version 2.9.9, which is already installed?
  21. I've reset your account as requested. You should receive an email shortly so you can take the next steps to recreate it. I made a backup before the reset, so if you discover you need any of your old files, you can download the backup here: https://heliohost.org/backup If you're not sure how to extract the backup files, please follow our how-to guide here: https://wiki.helionet.org/Account_Backups
  22. That domain is your main domain. What domain would you like to have as your new main domain? Please note, if you intend to make one of your existing addon domains your new main domain, an account reset will be required. This is because, in every case when users have switched their main domain with an addon domain, the rapid adding and deleting of DNS records ends up breaking their account in some irreparable way, causing an account reset to be necessary to fix it anyway. You can read more about that in the Wiki here: https://wiki.helionet.org/Changing_Your_Main_Domain#Account_Reset_is_Required_to_Swap_Main_and_Addon_Domain Please let us know how you want to proceed.
  23. Domain added. It can take up to 2 hours to start working.
  24. Thank you very much for your quick reply, I really appreciate it
  25. Domain added. It can take up to 2 hours to start working.
  26. The email is legit, but it comes from trustpilot directly so we don't have any control over the language used in them. They always say purchase, even if it was a donation or even a free user. It's just a request for a review. These have a chance of being sent whenever our system sends an email to you, in your case that review request actually was triggered by the terms of service update.
  27. On hosting accounts, secure shell access (SSH) is disabled for security reasons. In many cases, SSH is not actually necessary. If you let us know the command you want to run, we can investigate other ways to accomplish the same task without SSH. You can read more about this on our Wiki: https://wiki.helionet.org/FAQ#Can_I_use_SSH? If you absolutely require SSH access, you will need a VPS: https://heliohost.org/vps/
  28. The fact you posted from the matching forum account with matching email is all we need. Your account is being reset. You'll receive an email when the process completes containing a link to create a new account. If you need any of your old data, it will be available for download at https://heliohost.org/backup/ once the reset finishes.
  29. Is there any particular reason you can't use Python 3.12?
  1. Load more activity
×
×
  • Create New...