-
Posts
24,188 -
Joined
-
Last visited
-
Days Won
853
Everything posted by Krydos
-
Moved the dead links to the bottom and struck them out.
-
The way AutoSSL works is when you add or change a domain the system will automatically create a new ssl certificate and install it on your domain for you. You just have to be patient because it can take up to 24 hours for a new domain to get its certificate.
-
I tried like 8 different whois sites. They all returned no nameservers. The freenom .ml TLD system must have been down at the time.
-
I don't see any nameservers set for that domain https://bybyron.net/php/tools/dns_records.php?domain=atoz.ml&rec=NS Are you sure you set them to ns1.heliohost.org and ns2.heliohost.org?
-
That would be amazing! While we had a wikipedia article we received a lot more traffic to our site. The more traffic we receive the more ad revenue we make, and the more revenue we make the sooner we can buy new servers and improve our service. Let us know if you have any questions. You can't use what our admin say as sources, but you can verify information and make sure it's accurate.
-
You were blocked for too many failed cpanel logins. Please use https://www.heliohost.org/login/ to prevent this from happening again in the future.
-
Remote access enabled.
-
The ip that you posted from is not blocked. What ip do you see at https://www.heliohost.org/ip.php ?
-
The cron through cpanel is limited to 2 runs per day, but you can set up an external cron to run as often as every 5 minutes. To do so just make a script that can be accessed externally like encryptedcompany.tk/process_db.php and let us know the url and how often you want it to execute.
-
-
Having more than one account is a violation of our terms of service http://wiki.helionet.org/Terms that you agreed to when you created your accounts. Please use http://www.heliohost.org/classic/support/scripts/delete to delete any accounts in excess of one. I renamed your forum account so it matches your Tommy account. Enabled. https://encryptedcompany.tk/test.jsp Enabled. https://encryptedcompany.tk/access/ As long as you don't change the .war filename you don't need to request https again.
-
For future reference you can now deploy your .war files at https://tommy.heliohost.org:2083/frontend/paper_lantern/java/index.live.php Deployed. http://wilgil.heliohost.org/Zaxxon/
-
Tommy python: /usr/bin/python = 2.7.5 /usr/bin/python3.6 = 3.6.0 django = 1.10.5
-
Unfortunately mysql events require you to have superuser permissions. If we were to grant our users those permissions it would mean that they could wreak all sorts of havok on the server. The could kill other people's mysql processes, change the server settings, lock up the whole mysql server so the root user wouldn't even be able to log in, etc. Obviously you don't want someone doing all that stuff to your databases so we can't grant super privileges to anyone on a shared server. When people ask about mysql events we always recommend using a cron job that executes a script that does the required mysql queries. It works exactly the same without all of the security issues of super privilege. Let us know if you need help creating the cron job.
-
Jsp files are not going to work on your account because java is not enabled on your account. To request java please visit https://johnny.heliohost.org:2083/frontend/paper_lantern/java/index.live.php log in, and click the Request Java button. Please be aware that since you picked the Johnny server the wait to receive java on your account is quite long. The queue to receive java on Tommy is generally only a few hours.
-
Remote access enabled.
-
503 error means that the rails app isn't running, which we already know from looking at cpanel. That mongrel error looks like you're missing a gem. It probably says what gem further up.
-
Well, it was working the last time I tried it. Have you changed anything? What do the log files say? You can find them at /home/skarthi1/rails_apps/fedena/log/
-
You could run something like https://github.com/git-ftp/git-ftp on your home computer. Then when you make the changes via git like you prefer this code will upload only the files that have changed via ftp for you.
-
I assumed you were having trouble stopping the rails app. What happens when you click the Run button?
-
[Solved] 503 Service Error On Java Application
Krydos replied to shuffly2's topic in Customer Service
Tomcat wasn't running properly after the crash and reboot. -
The reason we have a max connections value set is so that one person can't hog the entire server and cause everyone else's mysql connections to fail due to lack of resources. You have to understand that you're on a shared server with 13,000 other accounts. If everyone else on the server allowed their poorly written code to have 30 open connections then your well written code wouldn't be able to connect at all. Would it be possible for your code to just catch the max_user_connections error and enter a loop to wait for it's turn to connect?
-
Remote access enabled.
-
I just checked and there are no currently running rails apps on your account so it must have stopped itself eventually.
-
[Solved] 503 Service Error On Java Application
Krydos replied to shuffly2's topic in Customer Service
Does it work now?