-
Posts
24,534 -
Joined
-
Last visited
-
Days Won
867
Everything posted by Krydos
-
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? -
cpanel File Manager uploading problem - false "virus" message
Krydos replied to corona79's topic in Customer Service
Please post the following information: Your cPanel username Your main domain The server that you are on -
Either add a redirect to the wp directory or delete wordpress and install it again on the root directory instead of in the wp directory.
-
This error was caused by being blocked which I already unblocked you. This is because you were blocked, which I already explained, and removed the block. That's because that's the way you set it up. If you wanted wordpress installed in the root directory you should have chosen the root directory instead of the wp directory when you set up wordpress. You could just add a redirect. No, I didn't read it because trying to decipher your broken English makes my head hurt. I really wish you would at least try to type in a way that makes sense to others.
-
You're on Tommy now. http://viatn.com/ 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.
-
Done. You should now be able to log in and your website should start working within 12 hours. Moving...
-
You got blocked for too many failed SFTP logins. Be sure your username and password are correctly entered into your SFTP client. Unblocked.
-
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...
-
We're 80% of the way there! https://www.gofundme.com/heliohosts-lily-server-and-storage-increase
-
You're missing the trailing / http://qgisms.heliohost.org/geoserver/
-
Try something like this select update_time from information_schema.tables where table_schema = 'cmh_database' and table_name = 'whatever';