Jump to content

Krydos

Chief Executive Officer
  • Posts

    24,534
  • Joined

  • Last visited

  • Days Won

    867

Everything posted by Krydos

  1. See https://www.helionet.org/index/topic/28956-tomcat-java-reset/ Let us know once you have java access again and your .war can be deployed.
  2. You currently have no open mysql connections.
  3. Something from 158.69.123.33 reopens all of your connections immediately and causes the error again. Is there any way to limit the number of connections it opens or force it to close connections on its own?
  4. Have you tried following this guide? http://wiki.helionet.org/Installing_a_Let%27s_Encrypt_SSL_Certificate
  5. The easiest way to set up cloudflare is to have it copy the working settings from our nameservers. If that isn't working you need to contact cloudflare to get support for why cloudflare isn't working. We don't have access to any of their systems.
  6. What is the error?
  7. It's working now http://uzuaan.web.id/
  8. Yes, free signups on Tommy open at midnight UTC and have been filling in about an hour the last few nights. If you don't feel like waiting until midnight, or if you miss the window of free signups you can create your account anytime by checking out https://www.heliohost.org/tommy/
  9. # ./deploy_java aakashsh HibernateWebsiteDemo User aakashsh found. Unable to find file: /home/aakashsh/HibernateWebsiteDemo.war Java is enabled on aakashsh Usage: deploy_java <username> <.war file>
  10. Occasionally suspensions happen on Johnny where it can take up to 24 hours to unsuspend the website even though you can access cPanel again. It should start working soon on it's own. I'll keep an eye on this thread and if it doesn't clear itself up I'll take a closer look.
  11. It's also possible someone else at your school has a HelioHost account and they got the IP blocked, not you.
  12. The only way to reset your account to the default settings that you started with is Delete your account http://www.heliohost.org/classic/support/scripts/deleteWait for it to delete. It's not instant. You can check if it's deleted by going to https://www.heliohost.org/status/ If it says inactive that means it's queued for deletion and you can cancel the deletion by reactivating it. If it says no account exists with that username then it's gone.[OPTIONAL] Request your forum username be changed. If you don't change your forum username at least temporarily it will say that that username is unavailable. This step is optional because you could always just choose a different username.Create a new account at https://www.heliohost.org/signup/[OPTIONAL] Request that your forum username be renamed to match your hosting account.
  13. For anyone who searches and finds this thread, you can't do it yourself since this version of Ruby isn't linked to cPanel. You can just make a post requesting the gems be installed though. Just specify your username, the server, the version of ruby you're using, and the gems you need. Installed.
  14. You got blocked for trying to log in to FTP with the wrong password too many times. Unblocked.
  15. Deployed. http://vickydev.heliohost.org/SpringLogin/ Since you're on Johnny it can take up to 24 hours to start working. Your next deployment, as long as you don't change the .war name, can be done quicker.
  16. Go to https://tommy.heliohost.org:2083/frontend/paper_lantern/mail/pops.html and create the email address we're going to use in this tutorial. For this example we'll use admin@rutaj6.heliohost.org Now go to https://tommy.heliohost.org:2083/frontend/paper_lantern/mail/filters/managefilters.html and click "Manage Filters" next to the email address we just created. Click "Create New Filter". Name the filter "Pipe Test". For testing let's set it to trigger whenever the Subject contains the string "Pipe Test". Select "Pipe to a Program". In the box type |/home/rutaj6/email/email_handler.phpThat first character is a pipe which is a vertical line. If you want the email to be delivered to your inbox in addition to piping to your script you can click the + on the right side, and set up Deliver to Folder: Inbox. This way it'll pipe it to your script AND put it in the inbox. Create /home/rutaj6/email/email_handler.php with permissions 755. The first two lines are very important. The first line has to be the shebang which is #! and then the path to the PHP version you want to use. The -q flag suppresses the output of php headers. If you echo any output of any kind in your script it will be emailed back to the sender as an error. This includes headers. The second line has to be <?php There can't be any blank lines or random characters or windows line endings. Any of that stuff will mess it up. #!/opt/cpanel/ea-php71/root/usr/bin/php-cgi -q <?php // listen for incoming emails $sock = fopen("php://stdin", "r"); $email = ""; // read email into buffer while (!feof($sock)) { $email .= fread($sock, 1024); } // close socket fclose($sock); // log received email $file = "/home/rutaj6/email/email.log"; $fh = fopen($file, 'a'); fwrite($fh, "$email\n\n\n"); Create /home/rutaj6/email/email.log with permissions 644. Now send an email to yourself at admin@rutaj6.heliohost.org and make sure "Pipe Test" is in the subject line to trigger the filter. If everything worked it should write your email to /home/rutaj6/email/email.log. From there the sky is the limit. You can process this raw input as much as you want and do whatever. Also, completely unrelated to this tutorial, please be aware that each user is only allowed one account as stated in our Terms of Service. Please delete all accounts in excess of one by going to http://www.heliohost.org/classic/support/scripts/delete Possessing more than one account could result in all of your accounts being suspended. Let us know if you need help consolidating your accounts down into one.
  17. Add developershub.tk to cpanel then. Just because cpanel knows how to handle requests for that domain doesn't mean the requests for that domain will go to Tommy.
  18. For FTP 10 failed logins within 1 hour = blocked.
  19. Unexpected end of file usually means you missed closing something, like ", ', or } or something.
  20. The .war file hasn't changed since the last deploy at https://www.helionet.org/index/topic/28907-deploy-war-application-request/?p=131741 Please only request deploys once.
  21. Create MX records where ever your DNS is hosted and point them to johnny.heliohost.org or tommy.heliohost.org.
  22. You may use any of our servers in the EU. No, putenv() is not disabled.
  23. Deployed. http://tk.heliohost.org/hebertbc_plataforma/
  24. The + sign in php is a mathematical operator not a concatenation operator. $username+"_"+$subject = 0 not a string.
×
×
  • Create New...