-
Posts
24,912 -
Joined
-
Last visited
-
Days Won
891
Everything posted by Krydos
-
http://avishek.heliohost.org/index.html works for me. Try clearing your browser cache.
-
Dedicated IP granted, and thanks for the donation.
-
You can have as many django apps as you want. You can have as many domains as you want. You can even have as many domains as you want pointing at the same django app. The paths just have to be the same.
-
Go to https://johnny.heliohost.org:2083/frontend/paper_lantern/subdomain/index.html and create the subdomain bittrexlive.jpsoft.heliohost.org. If your addon domain shows up at the bottom of the addon domain page it means you did it right, and you site should start working within 24 hours.
-
Unarchiving... Done. You should now be able to log in at https://www.heliohost.org/login/ and your website should start working again within 24 hours.
-
Well, my main recommendation starts with the fact that SQL is slow. PHP is fast. The way I do these things is I just pretty much dump the whole database into an array in PHP and then process it. Doing SQL queries in a while loop with 200 iterations is going to be painfully slow, and it's no wonder you get a max connection error. It would be even worse if you were using one of the new fangled asynchronous languages instead an old fashioned procedural language like PHP. Doing 201 SQL queries right in a row is going to take ages. Try doing one query outside the loop and then process the data in the loop. I bet you could cut the execution time down to like 10% of what it is now with this strategy.
-
Did you enable remote mysql connections? Cool, thanks! We accept donations of $1.00 USD or more. Anything less than that and paypal takes too much of our donation. We recommend donating the amount that you feel our service is worth to you. All of our servers can do what you need. When you make a donation you will have the opportunity to switch to the Tommy server. The main difference is Johnny is very slow and has a lot of downtime. Tommy is our fastest server and has pretty much perfect uptime.
-
Which domain? There are 47 .htaccess files on your account.
-
[Solved] Request Tomcat Context.xml Usehttponly="false"
Krydos replied to couch81's topic in Customer Service
See if this helps https://www.helionet.org/index/topic/30325-deploy-war-file/?p=136976 -
Yeah, sorry about the poor performance on Ricky. He's our newest server and we're still fine tuning him. Even Tommy had much worse downtime until we get the settings exactly right. There are so many variables involved you just kind of have to adjust things one at a time to see if it gets better or worse for the most part. You're on Johnny now. You should be able to login at https://www.heliohost.org/login/ and your domain should start working within 24 hours. If you see a 404 error or a Ricky queued page be sure to clear your browser cache and flush your os dns records. Let us know if you need help with anything else.
-
I set the .htaccess on these subdirectories before Ricky was even released to the public and they have never once changed or deleted on their own: https://krydos1.heliohost.org/54/phpinfo.php https://krydos1.heliohost.org/55/phpinfo.php https://krydos1.heliohost.org/56/phpinfo.php https://krydos1.heliohost.org/70/phpinfo.php https://krydos1.heliohost.org/71/phpinfo.php https://krydos1.heliohost.org/72/phpinfo.php
-
You're using the wrong port. Mysql is on port 3306. 2083 is cpanel. Try this static private String dbDriver = "jdbc:mysql://johnny.heliohost.org:3306/choky10_xxx";
-
Johnny supports up to ASP.NET 3.5, and Tommy supports up to ASP.NET 4.6. Ricky does not have ASP.NET at all.
-
[Solved] Require To Install Bzip2 Extension For Php
Krydos replied to Luigi123's topic in Escalated Requests
There you go https://krydos.heliohost.org/56/phpinfo.php -
Only 3 people have the root password for Tommy. If you install linux on your home computer you can run commands like that on it though.
-
[Solved] Require To Install Bzip2 Extension For Php
Krydos replied to Luigi123's topic in Escalated Requests
Which version of php are you using? -
[Solved] Http Access Logs Stopped On Oct. 16Th
Krydos replied to Computer Nerd Kev's topic in Escalated Requests
Checking in again on this issue, it looks like Tommy is completely caught up, and keeping up with processing logs. Thanks again for pointing it out. -
Unarchiving... Done. Your website is working again http://scalar.heliohost.org/ and you should be able to log in at https://www.heliohost.org/login/
-
Your nameservers are showing up correctly on some servers, but not others. That means that the old records are starting to time out and the old cached records are being updated. http://jaspervanhienen.com/ hosted on Johnny is actually working perfectly for me right now (it wasn't earlier). Give it some time I guess. Clear your browser cache each time you check and flush your os dns records can help too. If you're using windows the command is ipconfig /flushdns
-
# /usr/bin/python3.6 Python 3.6.1 (default, Jul 1 2017, 22:46:39) [GCC 4.4.7 20120313 (Red Hat 4.4.7-18)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import smtplib >>> s=smtplib.SMTP("mail.smtp2go.com", 2525); Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/python3.6/lib/python3.6/smtplib.py", line 251, in __init__ (code, msg) = self.connect(host, port) File "/usr/local/python3.6/lib/python3.6/smtplib.py", line 335, in connect self.sock = self._get_socket(host, port, self.timeout) File "/usr/local/python3.6/lib/python3.6/smtplib.py", line 306, in _get_socket self.source_address) File "/usr/local/python3.6/lib/python3.6/socket.py", line 722, in create_connection raise err File "/usr/local/python3.6/lib/python3.6/socket.py", line 713, in create_connection sock.connect(sa) ConnectionRefusedError: [Errno 111] Connection refused That would be because port 2525 is closed. Is there any particular reason it's on such a strange port? Does 25, 465, or 587 work for this service. Those are standard smtp ports.
-
It's wordpress that is redirecting all traffic from your http://nerfunatics.co.uk/ domain back to your http://nerfunatics.heliohost.org/ domain. Check this out https://codex.wordpress.org/Changing_The_Site_URL Once you have the domain changed in wordpress anyone who goes to http://nerfunatics.heliohost.org/ will end up at http://nerfunatics.co.uk/ like you want.
-
We're working through it one issue at a time. I usually stop looking for problems as soon as I find one. The next issue I see is you're using the wrong type of line endings. The easiest way to fix this is to create the file through cpanel file manager. Then click the code editor and copy/paste your code in. The default encoding and line endings that cpanel file manager uses is compatible with cgi. The other option is you can use a linux capable editor like notepad++ instead.