Jump to content

Krydos

Chief Executive Officer
  • Posts

    24,215
  • Joined

  • Last visited

  • Days Won

    857

Everything posted by Krydos

  1. Your account was suspended at 1:43am UTC. At the time that you were suspended you were at 100 memory usage, which means you were using more memory than every other account on the entire server. Once your account is suspended it causes basically no load, which is the whole point of suspending high load accounts. So your account is suspended for 7 hours and 53 minutes until 9:36am UTC when it was unsuspended. At 9:48am UTC you check the load. Keep in mind that the load meter measures from midnight UTC to midnight UTC. Your account has only been unsuspended for 1 hour and 55 minutes so far today. That's only 19.5% of the day so far. The other 80.5% of the day your account has been suspended, and you still managed to be at 65 memory level even though your account has been suspended for 80.5% of that day. Hopefully that helps you understand the numbers a little better because it seems like you were implying you shouldn't have been suspended, or implying that your account wasn't causing the most load or something. Let us know if you have any questions about how it all works, or if you need help reducing your load.
  2. You say this subprocess.Popen("/usr/bin/node /home/lookyweb/node/message.js") but when I look at the file I see this subprocess.Popen("/lookyweb/bin/node/home/lookyweb/node/message.js") The directory /lookyweb/ definitely doesn't exist so that will never work. The other thing I forgot to mention is if you open a command with an argument like that with popen you also have to add shell=True to the command. So now I edited it to look like this: subprocess.Popen("/usr/bin/node /home/lookyweb/node/message.js", shell=True) It looks like it's working. Go ahead and test it out, and if you leave it running please be sure to check your account load page frequently for the first few days.
  3. I'm guessing you created a new account because your old account got archived? You're only allowed to have one active account at a time, so if you want your old account unarchived you must delete your new account first at http://www.heliohost.org/classic/support/scripts/delete Let us know once it's deleted and we can unarchive your old account. If you'd rather just start over with a new account that is fine too. Welcome back.
  4. There you go https://krydos2.heliohost.org/cgi-bin/modules37.py
  5. The extension postgis has been created on the database readerx_db.
  6. Unarchived.
  7. Also merged duplicate threads. Please don't create multiple requests for the same thing.
  8. subprocess.Popen("/home/lookyweb/message.js") That file isn't executable because it doesn't have a shebang so that won't do anything. Try this subprocess.Popen("/usr/bin/node /home/lookyweb/message.js") Also if 'message.js'.encode('utf-8') in line: this won't do anything either because the executable will be "node" and the arguement passed to the node executable will be "message.js". You can't kill a process based on its argument like that. So try this if 'node'.encode('utf-8') in line:
  9. Unarchived.
  10. Unarchived.
  11. I'm not sure what you think a VPS is, but you get root command line access. That is "full control of the computer or virtual machine."
  12. Yes, I would definitely use a database to store emails and passwords for people. Make sure you don't store the passwords in plaintext either. They need to be salted and hashed. Storing emails and passwords in a text file is probably one of the worst ideas I've heard in a long time. What if someone figures out the name of the text file and just goes to yourdomain.heliohost.org/passwords.txt and everything is displayed? It may take a tiny bit more work now to figure out how to use a database and everything, but it will pay off in the long run. Develop good habits today, and you won't end up with a disaster later on.
  13. You can see the python modules that are currently installed on Johnny's python 3.7 at this link https://krydos2.heliohost.org/cgi-bin/modules37.py Go through the lines in your requirements.txt file and make sure each of them is listed on that link. If any of them aren't listed please post back which ones need to be installed.
  14. Usernames have to be 8 characters or less. The javascript enforces this, and the php enforces this too, but apparently if you create a forum account first with a ridiculously long username, and then try to create a hosting account using that same email address the username is imported from the forum and allows you to get around both the length checks. Of course that doesn't get you very far though, because the cpanel account creation script will still fail on the long username, which is why the javascript and php code tries to prevent the invalid username in the first place. You're the first one who has experienced this particular "bug" out of 437,671 people so far who have created an account using this version of the website. I requeued your account with the username angusnm3 this time, and it created successfully.
  15. Why not store data in a database? If you insist on writing to a file for some reason, I would bet the reason it is failing is permissions.
  16. Unarchived.
  17. What language do you intend to write the server side in?
  18. You're on Tommy now. Thanks for the donation.
  19. .59% of our traffic comes from windows xp still. Even worse .03% of our traffic came from windows server 2003.
  20. Here's the error you were getting:
  21. Unarchived.
  22. https://wiki.helionet.org/accounts/moving-your-account
×
×
  • Create New...