Jump to content

Krydos

Chief Executive Officer
  • Posts

    24,191
  • Joined

  • Last visited

  • Days Won

    854

Everything posted by Krydos

  1. There you go http://matyka.heliohost.org/test.aspx
  2. I've already raised the max_user_connections on Tommy recently. https://www.helionet.org/index/topic/30219-max-user-connections-raised/ We'll need to analyze the impacts of this raise for quite a bit longer before we make any more changes to it. The purpose of the limit is to make sure one user isn't hogging all of mysql, and causing everyone else to not be able to connect at all. Normally I would encourage people to close their mysql connections, but I don't expect you to rewrite wordpress's bug filled, vulnerability filled mess. The solution in my opinion is as it always has been to ditch wordpress. Sorry.
  3. An actual speed test on one of my django sites begs to differ. 47ms is about as fast as it gets. It might just be your code...
  4. Closing due to inactivity.
  5. See https://www.helionet.org/index/topic/29134-mbstring-enabled/
  6. Closing due to inactivity.
  7. Closing due to inactivity.
  8. Closing due to inactivity.
  9. Disabled pcntl_exec on Tommy https://krydos.heliohost.org/54/disabled.php https://krydos.heliohost.org/55/disabled.php https://krydos.heliohost.org/56/disabled.php https://krydos.heliohost.org/70/disabled.php https://krydos.heliohost.org/71/disabled.php https://krydos.heliohost.org/72/disabled.php and Ricky https://krydos1.heliohost.org/54/disabled.php https://krydos1.heliohost.org/55/disabled.php https://krydos1.heliohost.org/56/disabled.php https://krydos1.heliohost.org/70/disabled.php https://krydos1.heliohost.org/71/disabled.php https://krydos1.heliohost.org/72/disabled.php and Johnny https://krydos2.heliohost.org/disabled.php Thanks for noticing this security vulnerability and letting us know about it.
  10. Closing due to inactivity.
  11. Closing due to inactivity.
  12. Closing due to inactivity.
  13. Your 1 email per hour throttle has been removed, but if you exceed 50 emails per day it will automatically get throttled again. If you need to send more emails than that per day we'll require further information to verify that you won't be sending spam.
  14. Thanks for the $12. I'm willing to move you to Tommy if you want in addition to the dedicated ip. The only thing Johnny has that Tommy doesn't is Ruby on Rails. If you're interested in switching servers I'll need to move your account prior to granting the dedicated ip. Let us know how you would like to proceed.
  15. What is your username or main domain?
  16. 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
  17. Port 5432 is probably blocked at work.
  18. Unarchiving... Done. http://prooculo.heliohost.org/ You should be able to log in at https://www.heliohost.org/login/
  19. 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.
  20. 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.
  21. See https://www.helionet.org/index/topic/30325-deploy-war-file/?p=136959
  22. 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.
  23. Does it work now? I added this to your virtualhost ProxyPassReverseCookiePath /Blogging-0.0.1-SNAPSHOT /
  24. The domain http://graveyard.gq/ it working for me. Please clear your browser cache.
  25. 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.
×
×
  • Create New...