Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. I would like to add module curl_cffi==v0.7.0b4 for johnny server. Thanks
  3. I've never used it (and haven't seen anyone else on here do so either), so honestly can't say either way. I'd say go ahead and give it a try.
  4. Thank you, I will remove Moodle. Do you recomend Chamilo?
  5. Today
  6. Moodle is known to be too heavy to run here. In fact, it's so problematic that we've actually hidden it from Softaculous to reduce the chances of it being installed. It's basically enterprise software and is designed to be installed on its own server, not in a shared environment. If you want to use this software, I would suggest getting a VPS. Please immediately remove Moodle and find different software. Unsuspended.
  7. Hello, My account was suspended, but I don't know the reason for this suspension. Can you help me determine what happened to correct it? At this time I was testing with a Moodle platform, possibly a cronjob configuration. My user is: campus17k Thanks for your help.
  8. Yeah, Python is extremely picky about spaces (and line-endings as well) and is a major reason I can't stand the language...it uses spaces to define code blocks instead of the (much less problematic) curly braces { } used by every other language. Glad to see you got it working though
  9. Yesterday
  10. Please monitor your load more closely, you can view your load here: https://heliohost.org/dashboard/load/ I'm not sure which software you are installing, but if it's Moodle, I would suggest finding different software (noodle is known to be too heavy to run here.) Unsuspended. It may take a few minutes to start working.
  11. It's a rolling 24 hours, so there is no specific reset time. You can look at your load here: https://heliohost.org/dashboard/load/ Note that it may appear that you're above the limit because you were recently suspended, the system won't re-suspend you for 24 hours from the time of your last suspension, but when that 24 hour grace period expires, you get suspended again instantly if you are still above the limit. I would say the vast majority of users end up switching away from WordPress to solve the load issue.
  12. Now it works. It was the whitespaces.... I love languages with {} (or begin end) , that is a strange idea. Anyways, thanks to MoneyBroz and Krydos (in the Discord)
  13. At this time my site was disabled due to data traffic, because I was installing an LMS Please help me with enabling the site. My user is: campus17k Thank you very much.
  14. THANKS. When does the counter return to 0 for 24 hours so that I can do something? I'm afraid to do anything in the WordPress admin today..
  15. If it happens again you’ll be told to remove WP as you were already warned about this before you installed it. High server load. 10007.10 CPU. Unsuspended.
  16. Help me add this domain name to my account. username:flyodaapp domain: bronserve.com
  17. Hello, I spent a lot of time setting up and optimizing the site, which resulted in the site being deactivated. This charge is exceptional and should not happen again. Please reactivate the site. THANKS.
  18. I think I have something to start with.... seems to be an issue with blanks in my code. ... Whitespaces...
  19. Thanks it is 3.10 on Tommy. Regarding stopping, I want to use the above code. With psutil process terminate. I saw psutil is installed. But Krydos also told me is is always installed. I assumed getpid is part of os. The include looked like that.... But I do not really know Python. It is not the include line. It is as soon as I remove a # In front of the line using getpid. I out comment all lines and activated them top to bottom.
  20. Also you would need to have a way to stop your script. Krydos can explain more about this.
  21. getpid isn't installed on any python version on tommy. Krydos can install it if necessary, just include what python version you are using and your username.
  22. Sorry. As soon as I include getpid it does not run.
  23. Hi, I have a scheduled task. Sometimes it does not run through, the next is started.... It adds up and eats memory. So I want to check for a previous insta ce running and kill it. This is my idea: print("test " ) from os import getpid from os.path import exists from psutil import pid_exists, Process PATH_PIDFILE = "../pid.txt" my_pid = getpid() if exists(PATH_PIDFILE): with open(PATH_PIDFILE) as f: pid = f.read() pid = int(pid) if pid.isnumeric() else None if pid is not None and pid_exists(pid) and Process(pid).cmdline() == Process(my_pid).cmdline(): # Exists # Kill p = psutil.Process(pid) p.terminate() #print("killed ") with open(PATH_PIDFILE, "w") as f: f.write(str(my_pid)) Howorever a soon as I cute getpid linee it doesn't run anymore
  1. Load more activity
×
×
  • Create New...