Jump to content

Krydos

Chief Executive Officer
  • Posts

    24,608
  • Joined

  • Last visited

  • Days Won

    871

Everything posted by Krydos

  1. Also merged duplicate threads. Please don't create multiple requests for the same thing.
  2. 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:
  3. Unarchived.
  4. Unarchived.
  5. 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."
  6. 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.
  7. 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.
  8. 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.
  9. 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.
  10. Unarchived.
  11. What language do you intend to write the server side in?
  12. You're on Tommy now. Thanks for the donation.
  13. .59% of our traffic comes from windows xp still. Even worse .03% of our traffic came from windows server 2003.
  14. Here's the error you were getting:
  15. Unarchived.
  16. https://wiki.helionet.org/accounts/moving-your-account
  17. Looks like the only reason this account was created was to send spam email. Probably should read the ToS first next time, and we can keep the account suspended. An except from one of the spam reports we received for this account
  18. Your account appears to be functioning fine. You can reset your password at https://www.heliohost.org/reset/ or https://johnny.heliohost.org:2083/resetpass?start=1 if you can't login.
  19. Mysqlclient is a far superior and faster way to connect to a mysql database from a python script. If you insist on using mysql-connector you'll need to get a vps https://www.heliohost.org/vps/ where you will have root command line access to install any modules you want.
  20. In Linux files that start with a dot are hidden files, so file manager and ftp might not show them by default. If you want the file to show when you view a directory listing you need to enable the viewing of hidden files.
  21. Your account was archived not suspended. Suspended means you violated our terms of service or caused too much load. Archived means you abandoned your account and didn't log in for at least 60 days. Unarchived.
  22. Remote access enabled.
×
×
  • Create New...