-
Posts
24,544 -
Joined
-
Last visited
-
Days Won
868
Everything posted by Krydos
-
Here's a 320x50 mobile banner for you: And here's the code to put on your page: <ins data-revive-zoneid="5" data-revive-id="321e1cec4956204a54bd86da12deea5b"></ins><script async src="//krydos.heliohost.org/a/www/delivery/asyncjs.php"></script> How does that look? If you want a different size or different text I can customize it however you would like.
-
It says you used the wrong username or password to try to log in to your cpanel too many times. If you log in at https://www.heliohost.org/login/ this won't happen. Unblocked.
-
There are four states that the deployment can be in. First, you've never deployed a .war before and you have a .war uploaded. Second, you've requested a deployment and it hasn't gone through yet. Notice how you can't upload a new .war or request deployment again. If you already had a .war file deployed it will stay deployed until the new version is deployed. The downtime between deployments varies from .war to .war but generally it's only a few seconds. Some more complicated .wars have a few minutes of downtime while it processes the new version. Third, your servlet has been properly deployed, and you can click the link to visit it. Notice how the current version stays deployed even if you upload a new version of your .war or an entirely different .war file. The fourth state is error. Sometimes .war files cannot be deployed because of severe errors. The most common reason is the servlet is trying to use more than four simultaneous mysql connections. By default java applications assume they are the only thing running on the entire server and try to hog all of the resources by opening like 50 mysql connections.
-
This happens sometimes on Johnny. The high load on this server tends to break long delicate processes like creating addon domains. If you want a server with less load and less bugs we highly recommend moving your account to one of our production servers such as Ricky or Tommy. I have fixed the addon domains. You should now be able to see them on the addon domain page of your cpanel, and they should start working within 24 hours.
-
[Solved] No Joomla New Update Shown In Softaculous
Krydos replied to fuzmic's topic in Customer Service
3.8.1 came out yesterday. The people who develop softaculous probably haven't had a chance to add the new version yet. If you need the latest updates within hours of its release you'll have to update it manually. -
There you go http://seethend.heliohost.org/jsptest.jsp
-
It sounds like you are probably experiencing connection pooling then. Visual Basic tries to "improve" performance by keeping connections open for 4-8 minutes even after you explicitly close them in case you use them again. You should be able to disable connection pooling like this Public Shared Sub ClearAllPools Source: https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.clearallpools(v=vs.110).aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1
-
I set up an external cron to hit http://tommygun.heliohost.org/warpaint11/log every few minutes.
-
You're talking about the space available to your one account, which is 1 GB. We're talking about the total space available on the entire server for all of the accounts.
-
That .htaccess was created by the multiphp button in your cpanel. If you change the version of php you're using it will change the contents of that file. If you delete it your account will use the default php which is 5.6
-
Tomcat needs to restart occasionally. Sometimes it goes days without needing a restart and sometimes only a couple hours. It's kind of random when and why it needs to be restarted. During each restart there will be a minute or so of downtime where you will probably get a 503 error. The last restart was about 6 hours ago. I have an uptime monitor on tomcat and it's usually about 1% lower than the server as a whole.
-
[Solved] Perl Www::curl::easy Module Install Failing
Krydos replied to rqqmAuxeh's topic in Escalated Requests
There you go Successfully installed WWW-Curl-4.17 WWW::Curl::Easy is up to date. (4.17) -
Try something like this then MySQLConnection = New MySqlConnection("server=johnny.heliohost.org; user id=maba_user; password=password123; database=maba_db") MySQLConnection.Open() ' query MySQLConnection.Close()
-
Unarchiving... You should now be able to log in at https://www.heliohost.org/login/ and your website should start working within 24 hours.
-
[Solved] Perl Www::curl::easy Module Install Failing
Krydos replied to rqqmAuxeh's topic in Escalated Requests
What is your username or main domain? -
First of all, as stated in our terms of service http://wiki.helionet.org/Terms which you agreed to twice when you created your accounts, each person is allowed to have only one account. I recommend you delete your Johnny account by using http://www.heliohost.org/classic/support/scripts/delete Second of all, there is no such thing as perfect uptime servers. If DDoS attacks can take out the root nameservers https://www.theregister.co.uk/2015/12/08/internet_root_servers_ddos/ then everything on the internet goes down. EDIT: Beat me by less than a minute! Haha.
-
Unarchiving... You should now be able to log in at https://www.heliohost.org/login/ and your website should start working again within 24 hours.
-
What language are your scripts?
-
Unblocked. We recommend logging in at https://www.heliohost.org/login/ to prevent this from happening.
-
Unblocked. If you had been logging in through https://www.heliohost.org/login/ You would have been told your account was inactive, been given instructions on how to reactivate it, and you wouldn't have gotten blocked.
-
FAIL - Application at context path /seethend_signup could not be started
-
[Solved] Request For Sourceguardian Enabled
Krydos replied to seintitus's topic in Escalated Requests
It's not going to work on a shared host because exec() and shell_exec() are a security risk and therefore disabled. I recommend either finding another software that does the same thing without requiring disabled functions, or purchasing a VPS where you can install and run whatever you want. We recommend giving hostgator a try, because you can currently get 75% off their normal VPS price. This is a limited time offer that we can allow you to use through our referal program: https://partners.hostgator.com/c/391660/198255/3094 -
Thanks for noticing this. I had reverse dns all set up from our end, but Hurricane Electric is currently authoritative for for the ip address 65.19.141.67 and they need to edit their dns configuration to delegate control to our nameservers. We're just waiting on HE for now. I contacted HE support and they said it could take up to 24 hours to start working.
-
No. I have no idea where you got that from. We limit the number of mysql connections each account is allowed to have open at once to prevent the mysql software from becoming overloaded and blocking everyone else on your server from being able to connect to mysql. Ok, so say your scripts use 3 persistent connections per user. If there is one user then you have 3 open connections at any time. If you have 2 users then you have 6 persistent connections open at once and you get the error. We have accounts on our servers that have hundreds of simultaneous users and since their code closes their connections they don't see that error.