-
Posts
24,730 -
Joined
-
Last visited
-
Days Won
878
Everything posted by Krydos
-
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
-
Does it work now?
-
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.
-
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.
-
Deployed. http://bfpsw.heliohost.org/JAW/
-
Deployed. http://bfpsw.heliohost.org/JAW/
-
Deployed. http://bfpsw.heliohost.org/JAW/
-
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.
-
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.
- 3 replies
-
- mysqljdbc exceptions
- max user connections
-
(and 1 more)
Tagged with:
-
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.
-
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.
- 3 replies
-
- mysqljdbc exceptions
- max user connections
-
(and 1 more)
Tagged with:
-
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.
-
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...
-
Ok, sounds good. You're whitelisted to send up to 100 emails per day.
-
[Solved] Disable Automatically populating $HTTP_RAW_POST_DATA
Krydos replied to smartmc's topic in Escalated Requests
Which version of php are you using? -
Unable to add addon domains to my johnny account
Krydos replied to seintitus's topic in Customer Service
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. -
Deployed. http://bfpsw.heliohost.org/JAW/
-
There you go https://krydos.heliohost.org/72/phpinfo.php
-
Have you enabled remote mysql for the IP 2.83.50.137 or the wildcard % to allow all IPs?
-
Try resetting the password.
-
Deployed. http://bfpsw.heliohost.org/JAW/
-
http://sudiprijal.com.np/ is working for me. Are you still seeing this error?
-
http://sudiprijal.com.np/ is working for me. Are you still seeing this error?
-
cpanel File Manager uploading problem - false "virus" message
Krydos replied to corona79's topic in Customer Service
Does it work now?