-
Posts
24,192 -
Joined
-
Last visited
-
Days Won
854
Everything posted by Krydos
-
Yeah, python is supposedly the easiest language to learn for new programmers. It has a lot of powerful frameworks for various things including websites. I've said it before, but if I was to make the HelioHost homepage all over again I might seriously consider using Django.
-
I stick with my recommendation of php for server side languages, but if you open up the question to all languages for all purposes then java wins. It's used in the most number of applications worldwide. Java can run on pretty much any device.
-
The reason they're not showing up as addon domains is because you already had soubhagya.mishra.work and the other two added as subdomains. Generally if the domain is just something tacked on to the beginning with a dot then it's a subdomain. If it's something completely separate from your other domains it's an addon. So you had things set up correctly. Since you've been having such trouble with all of this I went ahead and deleted your subdomains for you, and readded them as addon domains like you want.
-
Backup your work before you make changes.
-
I agree that it is a pretty cool idea, but node.js is not currently available on any of our servers. We do have plans on implementing it some day though.
-
Yeah, php. Despite how old fashioned it is and all of it's flaws it's definitely the most widely used, and any web-based job you get is going to look at you really weird in the interview if you don't know php.
-
[Solved] Queued: Baolk And Rename User Name
Krydos replied to ba2olk's topic in Suspended and Queued Accounts
Change your NS records to ns1.heliohost.org and ns2.heliohost.org The reason you're seeing a Johnny queued page is because your cloudflare settings are incorrect. The easiest way to fix it is to use our nameservers temporarily until your domain works, and then have cloudflare copy our working settings. The reason you can't create an account on Tommy with the username ba2olk is because your forum username is ba2olk. -
There you go https://atoz.ml/test.jsp
-
For each user that has java enabled it increases the total server resources required. For each user that has http and https enabled it takes double. We can support two users on http or one user with https and http. In order to enable https and http for you it would basically prevent another user from having java at all.
-
Your website is working again http://neomx000.heliohost.org/
-
What happens when you make that file not writable by group? PHP files need to be 644.
-
What about https://johnny.heliohost.org:2083/frontend/paper_lantern/stats/errlog.html ?
-
Unarchiving... Done. You should now be able to log in at https://www.heliohost.org/login/ and your website should start working within 12 hours.
-
...so make it so it's not writable by group? rwxrwxr-x is 775 rwxr-xr-x is 755
-
Also make sure all of your directories at 755, not 775 like FTP sometimes uploads them. Take a look at https://johnny.heliohost.org:2083/frontend/paper_lantern/stats/errlog.html
-
What does the error_log file say?
-
Java and ASP.NET need to be requested on Tommy. Ruby on Rails is not available on Tommy. Everything else that we offer is enabled by default.
-
Remote access enabled.
-
That's because java is not enabled on your account. To request java on your account please go to https://johnny.heliohost.org:2083/frontend/paper_lantern/java/index.live.php and click Request Java. Please be aware that since you picked the Johnny server the wait to receive java is quite long. The wait to receive java on the Tommy server is generally just a few hours.
-
[Solved] Suspended For Inactivity: Catgod
Krydos replied to catgod's topic in Suspended and Queued Accounts
Your website is working again http://catgod.heliohost.org/ -
[Solved] Suspended For Inactivity: Catgod
Krydos replied to catgod's topic in Suspended and Queued Accounts
Unarchiving... Done. You should now be able to login at https://www.heliohost.org/login/ and your website should start working within 12 hours. -
As long as all of your domains are using our NS records everything will update itself automatically.
-
[Solved] Dedicated Ip Points To The Wrong Area
Krydos replied to Bailey's topic in Escalated Requests
Cpanel domains aren't designed to be access by IP alone. Doing so is going to result in fairly random results. I'm not sure why you would need to access it by IP anyways. Probably the reason wiki.dev.bailey.cf comes up when you go to that IP is because apache gets a request for 66.220.18.190:80 and that is quite ambiguous because there's like a dozen different virtualhosts that match that IP and port. wiki.dev.bailey.cf is currently the last virtualhost that matches so maybe that's why it goes to that one. There is really no way to control what order the virtualhosts are listed in httpd.conf either. If you really need to access your domains by IP alone you would have to remove the ambiguity by having each domain and sub domain on it's own IP. -
CGI have to be in public_html or a subdirectory. If you're running it from cron it can be anywhere. If you use that shebang on Johnny you'll be using a truely ancient python version 2.6.6 that was released like 8 years ago. Do you really want to do that? If you use /usr/bin/python2.7 or /usr/bin/python3.6 you'll be using very new, very up to date versions. All accounts on all servers have python. No, cron currently run on pacific US time because that's where the servers are located. Check this link to see what time it is in California. https://www.google.com/search?q=what+time+is+it+currently+in+california No, you can run python as a cron, as cgi, as django, or as flask. If you want to use django or flask you'll need to switch servers though because Johnny doesn't support those. There's no way to "click" on a script without a gui. You can do that on your home computer though. You're getting cgi and cron python mixed up. If you want to run your python script as a cgi in public_html then that code in .htaccess is necessary. It's not needed for what you're trying to do.