Jump to content

Krydos

Chief Executive Officer
  • Posts

    23,805
  • Joined

  • Last visited

  • Days Won

    828

Everything posted by Krydos

  1. Done. You should now be able to log in and your website should start working within 12 hours.
  2. Your account was archived because you haven't logged in for quite a while. We have a limited amount of space on our servers, and occasionally we have to remove the unused accounts to make space for new users. To prevent your account from becoming archived again please remember to log in at https://www.heliohost.org/login/ at least once every 30 days. Unarchiving...
  3. Mysql itself isn't case sensitive. Windows is not case sensitive so mysql on windows isn't case sensitive. Linux is case sensitive so mysql on linux is case sensitive. A table named TEST is different from test on linux. I just always do everything in lowercase to make it consistent. Mysql has a hard enough time without me yelling at it in all caps.
  4. Krydos

    Please Check

    Yeah, a cname and a subdomain with the same url would conflict with each other. TTL stands for time to live. If you plan on changing your MX records frequently having a low TTL would mean less time for DNS servers to update to the new value, but it increases the load on the DNS servers because they have to query for the new value really often. If you don't expect to change your MX records daily then 14400 is a good standard to use. Yes, your site doesn't have to be on https for SFTP to work. You set your SFTP to host: tommy.heliohost.org port: 1342
  5. That account is suspended for Phishing. For security reasons, phishing accounts cannot be unsuspended, backed up, or deleted. You will need to create a new account and restore any backup you may have. Please be aware that you will not be able to reuse any domains on your suspended account, and will need to pick a new username. We apologize for any inconvenience this may have caused.
  6. I was assuming that since this topic was posted after the first account was unsuspended he has changed his mind on which account to keep. The account josemi05 has been suspended, and mysqldam has been unsuspended.
  7. Deployed. http://bfpsw.heliohost.org/JAW/
  8. Deployed. http://bfpsw.heliohost.org/JAW/
  9. Deployed. http://bfpsw.heliohost.org/JAW/
  10. Krydos

    Please Check

    To add or change MX records go to https://tommy.heliohost.org:2083/frontend/paper_lantern/zone_editor/index.html http://mail.ishoham.com/ seems to be working for me. When you visit it you get a google signin page. Is that not what you want it to do? When you switch back to cloudflare they are going to copy all of our working settings. If you plan on making any more dns changes we recommend you do it without cloudflare, and then once you have everything exactly as you want switch to cloudflare.
  11. Well, if you can't get your code to close the connections you can always try a different language. For instance you could have the remote java application connect to a php script on the server. Closing mysql connections in php is pretty easy. The other option I can think of is to get a vps https://www.heliohost.org/partners/vps that way you have the whole server to yourself and java can open howeveer hundreds of connections as it wants to. Any shared host you find (even paid ones) will have a limit on the number of simultaneous connections.
  12. Try changing the password of the mysql user netorube_pafr2, and then update the password in your connection settings. Let us know if that still doesn't work.
  13. Make sure you close all mysql connections as soon as you are done with them. Do something like this: Connection conn = null; PreparedStatement ps = null; ResultSet rs = null; try { // Do stuff ... } catch (SQLException ex) { // Exception handling stuff ... } finally { if (rs != null) { try { rs.close(); } catch (SQLException e) { /* ignored */} } if (ps != null) { try { ps.close(); } catch (SQLException e) { /* ignored */} } if (conn != null) { try { conn.close(); } catch (SQLException e) { /* ignored */} } } Sites that close their mysql connections can handle thousands of visitors. Sites that use persistent connections can generally only serve a very small number of visitors. The default in java is to treat all connections as persistent unless you code it otherwise. The limit is in place to prevent one user from blocking anyone else from connecting to mysql.
  14. That account is suspended for Phishing. For security reasons, phishing accounts cannot be unsuspended, backed up, or deleted. You will need to create a new account and restore any backup you may have. Please be aware that you will not be able to reuse any domains on your suspended account, and will need to pick a new username. We apologize for any inconvenience this may have caused.
  15. Your account was archived because you haven't logged in for quite a while. We have a limited amount of space on our servers, and occasionally we have to remove the unused accounts to make space for new users. To prevent your account from becoming archived again please remember to log in at https://www.heliohost.org/login/ at least once every 30 days. Unarchiving...
  16. Ok, sounds good. You're whitelisted to send up to 100 emails per day.
  17. That happens on Johnny fairly often because of the high load. Ricky and Tommy don't have these kinds of bugs because they aren't as overloaded. Try creating the subdomain bitinvestor.chesoen.heliohost.org. If your addon domain shows up in cpanel that means it worked, and your domain should start working within 12 hours. If it doesn't show up let us know and we can take a closer look.
  18. Deployed. http://bfpsw.heliohost.org/JAW/
  19. There you go https://krydos.heliohost.org/72/phpinfo.php
  20. Have you enabled remote mysql for the IP 2.83.50.137 or the wildcard % to allow all IPs?
  21. Deployed. http://bfpsw.heliohost.org/JAW/
×
×
  • Create New...