-
Posts
25,505 -
Joined
-
Last visited
-
Days Won
913
Everything posted by Krydos
-
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.
-
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.
-
[Solved] Install ML libraries in Flask website
Krydos replied to coronavs's topic in Escalated Requests
There you go https://krydos2.heliohost.org/cgi-bin/modules37.py- 8 replies
-
- flask
- tensorflow
-
(and 2 more)
Tagged with:
-
[Solved] Need PostGIS extension on my postgresql database
Krydos replied to readerx's topic in Escalated Requests
The extension postgis has been created on the database readerx_db. -
Unarchived.
-
Also merged duplicate threads. Please don't create multiple requests for the same thing.
-
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:
-
[Solved] Need remote access to Postgres database
Krydos replied to readerx's topic in Escalated Requests
Remote access enabled. -
Unarchived.
-
Unarchived.
-
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."
-
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.
-
[Solved] Install ML libraries in Flask website
Krydos replied to coronavs's topic in Escalated Requests
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 replies
-
- flask
- tensorflow
-
(and 2 more)
Tagged with:
-
[Solved] [Krydos] Queued: angusnm3 (I think)
Krydos replied to angusnm3outlookcom's topic in Escalated Requests
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. -
Unarchived.
-
What language do you intend to write the server side in?
-
You're on Tommy now. Thanks for the donation.
-
Unarchived.
-
Suggestion to Disable TLS 1.0 and TLS 1.1 for all users
Krydos replied to SMARTDODO's topic in Customer Service
.59% of our traffic comes from windows xp still. Even worse .03% of our traffic came from windows server 2003. -
Unarchived.
-
Here's the error you were getting:
-
Unarchived.
-
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
