-
Posts
24,534 -
Joined
-
Last visited
-
Days Won
867
Everything posted by Krydos
-
The extremely conservative settings that we have on this beta feature had not been met yet. That's why we say it could take several hours Anyways, it looks like the message about cookies is gone, right? http://lepage.heliohost.org/mlepage_blog/#!login
-
Port 5432 is probably blocked at work.
-
[Solved] Account Suspended Due To Inactivity: Proculo
Krydos replied to prooculo's topic in Escalated Requests
Unarchiving... Done. http://prooculo.heliohost.org/ You should be able to log in at https://www.heliohost.org/login/ -
Your file has dos line endings. It's running on linux so it needs linux line endings. The easiest way to do this is to go to file manager in cpanel, create a new file, and copy/paste the code in. The default settings in file manager will work on linux. Another option is you could download an editor like notepad++ that is capable of writing files with the proper line endings.
-
Try creating your .war file with a name like mlepage_blog.war. Sometimes people's .war files don't deploy correctly because our system prepends your username to the beginning of the file before deploying it. If we didn't do that if person A deployed blog.war and then person B deployed blog.war it would overwrite the first deployment.
-
See https://www.helionet.org/index/topic/30325-deploy-war-file/?p=136959
-
HTML with the word 'Blank.' in index.html. Yep. CGI is really easy. Here's a simple example: #!/usr/bin/python3.6 print("Content-Type: text/html\n\n") print("HelioHost rules!") The first line says which language the rest of the code is written in. The second line sets the headers so a browser can understand the data that is being sent. The third line is just a simple print comnmand, but since this is cgi the output goes to a browser instead of the command line. If you're curious here's the actual code for https://krydos.heliohost.org/cgi-bin/modules36.py #!/usr/bin/python3.6 print("Content-Type: text/html\n\n") import pip installed_packages = pip.get_installed_distributions() installed_packages_list = sorted(["<td>%s</td><td>%s</td>" % (i.key, i.version) for i in installed_packages]) print("Tommy /usr/bin/python3.6 installed modules:<br><br>") print("<table><tr><th align='left'>Module</th><th align='left'>Version</th></tr>") print("</tr><tr>".join(installed_packages_list)) print("</tr></table>") It just shows all of the modules that have been installed with pip. It doesn't show the default modules that came with python though.
-
Does it work now? I added this to your virtualhost ProxyPassReverseCookiePath /Blogging-0.0.1-SNAPSHOT /
-
The domain http://graveyard.gq/ it working for me. Please clear your browser cache.
-
No, I tested it on windows and this is all you need https://krydos.heliohost.org/downloads/psql.zip Extract that somewhere on your path, like c:\windows and then you'll be able to run the command psql.exe on the command prompt.
-
https://tommy.heliohost.org:2083/frontend/paper_lantern/ftp/accounts.html https://ricky.heliohost.org:2083/frontend/paper_lantern/ftp/accounts.html https://johnny.heliohost.org:2083/frontend/paper_lantern/ftp/accounts.html All three servers show the recommended SFTP settings right at the top of the ftp page in cpanel now.
-
All that information looks right to me. Try this command psql --username=patents_plrusr --host=tommy.heliohost.org --dbname=patents_plrdb --port=5432 If that works then you know the problem is in your django app not on your computer or remote access.
-
Unarchiving... Done. You should now be able to log in at https://www.heliohost.org/login/ and your website http://jmayank1.heliohost.org/ should start working within 24 hours.
-
[Solved] A Server Move Request With Donation
Krydos replied to ballagyr's topic in Escalated Requests
You're on Tommy now. http://cybercity.eu.org/ You should be able to log in at https://www.heliohost.org/login/ If you see a 404 error or a Ricky queued page please clear your browser cache and flush your os dns records. Thank for the donation. We really appreciate it. -
I don't see that account in the system. Are you sure you posted the correct information?
-
I can't see the contents of the email. The log files just show the total number of sent emails.
-
You're on Tommy now. http://lepage.heliohost.org/ You should be able to log in at https://www.heliohost.org/login/ If you see a 404 error or a Johnny queued page please clear your browser cache and flush your os dns records. Thank you very much for the donation. We really appreciate it.
-
Remote access enabled.
-
I'd be happy to move your account for you. I just need 3 pieces of information: Transaction ID, account username, and destination server.
-
That likely means your computer has the old Ricky IP cached. You can either wait it out, flush your os dns records, or use another internet connection like a cell phone until the old ip cache expires.
-
You're on Tommy now http://deluxclouds.com/ and you should be able to log in at https://www.heliohost.org/login/ If you see a 404 error or a Ricky queued page please clear your browser cache, and flush your os dns records. Thank you for your donation. We really appreciate it. EDIT: After moving your account I noticed that your site is throwing a 500 error. It looks like there is something wrong with your theme [30-Oct-2017 03:35:26 UTC] PHP Fatal error: Cannot redeclare return_policy() (previously declared in /home/reececp/public_html/wp-content/themes/hestia/functions.php:31) in /home/reececp/public_html/wp-content/themes/hestia/functions.php on line 31
-
I currently live in CDT, but in a week I'm getting evicted and I'm being forced to move to CST. I'm not too happy about it. Apparently "lack of sunshine" is a violation of my CDT lease.
-
[Solved] My Account Has Been Flagged As Inactive
Krydos replied to feshibab's topic in Escalated Requests
What is the addon domain you're trying to add? 95% of the time Johnny creates the addon domain, but fails to create the subdomain before timing out. If you manually create the subdomain it starts working. -
No, you're using anonymous login according to your screenshots. Luigi said normal login. Our servers don't allow anonymous logins because then any random bot on the internet could upload viruses and stuff onto our servers. Try this Host: johnny.heliohost.org Port: 1373 Protocol: SFTP Logon type: Normal Username: shinarit Password: <same as cpanel>
-
What do you mean by "doesn't work"? Is there an error message perhaps?