Jump to content

Krydos

Chief Executive Officer
  • Posts

    23,799
  • Joined

  • Last visited

  • Days Won

    828

Everything posted by Krydos

  1. You could try exporting your data, deleting the old install, installing a fresh copy of the upgraded software, and then restore your backed up data. I'm not familiar enough with Joomla to know if there's an import/export functions though so this is just a guess.
  2. Node.js on the shared hosting accounts runs with a thing called passenger. What passenger does is when someone requests your node website it starts the executable running automatically. If you don't get any page hits after 5 minutes of inactivity it automatically kills the node process to conserve memory. So you can't really schedule it to run without using an external cron job. The external cron job would just access the URL that you specify, and passenger would automatically start the node application since there was a request for it. If you want us to set up an external cron for you just let us know the URL and the frequency that you want the cron to run at. Once every 5 minutes is the max. The other option is you could purchase a VPS https://www.heliohost.org/vps/ There you will have root access to the entire virtual server, and you can run node.js as a daemon. That means the node applcation will always be running and wouldn't unload itself after 5 minutes with no page hits. This would improve the response time and performance because with passenger it takes an extra couple seconds to load the node application if it isn't currently running. After that it loads much faster for each page hit since it's already running.
  3. You have to use your username, not your email address on the deletion page. http://www.heliohost.org/classic/support/scripts/delete
  4. Done. Yes, search engine crawlers can access your domain as long as you don't block access yourself. Everything is allowed except spaces, tabs, and double quotes ".
  5. When I ran the command manually it took about 30 seconds to finish and that was with Johnny's load at only 4. Php scripts have a maximum time that they can run, and if they exceed the limit they are killed. I wouldn't surprise me at all if the load was high on Johnny when your cron tried to run, and it was so slow that it timed out before finishing everything. I'm sure you've heard the spiel before, but Johnny isn't a production server. We only recommend using Johnny until you're done experimenting and then move to a better server. Ricky has good uptime, but Tommy is considerably faster. Free signups for Ricky start at midnight UTC and usually fills in about 5 minutes. Tommy free signups also start at midnight UTC, and usually fill in about 5 seconds. If you're interested in switching servers an admin can move your account for you if you're a donor. Otherwise the process to switch servers is 1) backup 2) delete the Johnny account 3) hope you're fast enough to snag a production server slot, and 4) restore your backup.
  6. You're on Tommy now. Thanks for the donation.
  7. Unarchived. Your username is now widiu70.
  8. You're on Tommy now. Thanks for the donation.
  9. Is this the guide you followed? https://wiki.helionet.org/Django
  10. /usr/bin/python3.7 = 3.7 /usr/bin/python = 2.7 Here is the list of modules on python 2.7 https://krydos.heliohost.org/cgi-bin/modules27.py
  11. It looks like your IP is being blocked on Johnny since all of your @groovetunez.ga email addresses are still trying to log in to Johnny instead of Tommy where your account is actually located now.
  12. An invite to skip the daily signup limit has been sent to your email address so you can create a new account. If you want to download the backup of your old account you may do so at https://www.heliohost.org/backup/
  13. If another of these happens please don't park the domain for them, but rather escalate it to me.
  14. It depends a lot on how you code your bot. If it uses a ton of memory and is running constantly then yeah, you're going to get suspended, but I've seen some people run 3 small bots on their one account for months and not get suspended. Just keep an eye on your Account Load page.
  15. Have you added that domain as an alias or addon domain?
  16. You could probably adapt this guide for making a discord bot to make a telegram bot on HelioHost https://wiki.helionet.org/Discord_Bot
  17. NLTK requires Python versions 3.5, 3.6, 3.7, or 3.8 This is python 2.7 which does not support nltk. Would you like me to install nltk on python 3.6? You'll have to switch to the shebang #!/usr/bin/python3.6
  18. The memory limit on Tommy's php 7.3 is already 128 MB which is the maximum we're going to be able to do for now. We are currently experiencing a lot of load spikes on Tommy that are primarily caused by high memory usage by php. If you need more than 128 MB I would recommend a vps https://www.heliohost.org/vps/ where you'll have root access to set the memory limits to whatever you want. Another option would be switching to the Johnny server where uptime doesn't matter as much. We try to keep Tommy consistently in the 99%+ uptime range, while Johnny is currently about 85% uptime over the last week.
  19. The memory limit on Tommy's php 7.3 is already 128 MB which is the maximum we're going to be able to do for now. We are currently experiencing a lot of load spikes on Tommy that are primarily caused by high memory usage by php. If you need more than 128 MB I would recommend a vps https://www.heliohost.org/vps/ where you'll have root access to set the memory limits to whatever you want. Another option would be switching to the Johnny server where uptime doesn't matter as much. We try to keep Tommy consistently in the 99%+ uptime range, while Johnny is currently about 85% uptime over the last week.
×
×
  • Create New...