-
Posts
18,217 -
Joined
-
Last visited
-
Days Won
695
Everything posted by wolstech
-
It means all the options for creating/managing/etc. would stop working in cpanel, which would effectively make it impossible to use the MySQL server. We don't know exactly what would break for MySQL since we've never done it, but our past experiences with other things we've attempted to custom build have shown that it usually doesn't end well. We'd rather not break the server trying.
-
All of those are intentionally limited to prevent abuse. The max_upload attributes shouldn't really affect you since nobody's going to be uploading pictures larger than 32MB anyway. You'd run out of disk space. We will not increase max_execution_time since it allows scripts to generate too much load and crash the server. Any script needing more than 30 seconds to run is kind of pointless anyway. Most users are gone within the first 5-10 seconds if a page isn't done loading.
- 3 replies
-
- clipbucket
- error
-
(and 1 more)
Tagged with:
-
It appears we lost Eddie for a few minutes. The forum and website were down too. Tommy is still down after the outage...
-
[Solved] First easy basic standard Python CGI
wolstech replied to theil's topic in Website Management and Coding
If it's anything like what causes this for php, it's because of the group attribute (the second number in the permissions). The files cannot be writable by the group. It'd be a bad idea from a security standpoint to have stuff writable by the public too, unless it's something meant for that, like a folder for public file uploads. -
At this time, no. We do have this planned as a future feature though, so down the road, yes you will be able to purchase additional space.
-
To my knowledge, we don't support SSL for database connections. Krydos might know if this can be supported. Escalating.
-
This support request is being escalated to our root admin.
-
The form was removed because it did not work for most people (declined cards). We're working on a replacement. You can donate by PayPal in the meantime and post your transaction ID for an invite. If you're using your own domain, a queued page indicates your account has deleted successfully. We do not offer phone support since there's nobody to take phone calls. We have no staff or office (we're all volunteers that work remotely in our free time). As for email support, when did you send the email to support@heliohost.org? If you can tell me the time it was sent, and a partial email address it was sent from, I can get a root admin to look into why this didn't post like it should have.
-
WAR files don't deploy or run inside your account, so they are not visible to the user who owns the war and they can't access your folders (though they might be able to access your files if you change the permissions on the folder it needs to be writable by the public.)
-
You're on Johnny, which is known for being unstable and having frequent downtime due to being overloaded. Johnny is meant as an experimental server and is for users who want an account as quickly as possible and don't care about uptime or performance. If you need fast, reliable hosting, you need to delete your account and sign up for tommy or Ricky instead. Also, I don't recommend .tk domains for large websites. Freenom, the company who manages them, has been known to cancel domains for getting too much traffic.
-
Unblocked.
-
Unblocked.
-
[Solved] Suspended: hh_aldi1406
wolstech replied to aldi1406's topic in Suspended and Queued Accounts
More specifically, it's banned for phishing. -
That means you're on Johnny. Johnny does not support any php version other than 5.6, so you cannot switch versions if you're on that server. You'd need to delete your account and sign up for Tommy or Ricky. Free Sign ups for those servers open at midnight UTC every day and fill quickly, or you can donate to receive a tommy account.
-
OK. Now that it shows in addon domains, you'll need to wait the 12 hours (it usually takes less than that), then clear your browser's cache and it should work. Please let us know if it hasn't started working by tomorrow and I'll have someone else take a look at it for you.
-
That's a known issue on Johnny. Try going into subdomains and create the subdomain shareshort.shareshort.heliohost.org. After that, check in the Addon domains list again and see if its there.
-
Can you see it in the Addon domains list in cPanel? If not, it partially added (common for Johnny accounts).
-
Did you just add it in cPanel today? If so, you need to wait up to 12 hours for it to start working.
-
He's getting blocked for failed POP3 logins. That's usually what happens when a phone or mail client keeps trying to check mail with an invalid username or password. I'd recommend he remove his HelioHost email from his mail client and re-add it, making sure the username and password are correct. Unblocked.
-
@mrj: Bailey can post it down in the dev board (there's a hidden forum we use for development stuff). If Bailey agrees, I can add you to the list of users who can see that board.
-
You're on Johnny (well, were, your account appears to be waiting in line for deletion), which is famous for poor performance and uptime. He's meant as an experimental server, not for hosting a production website. If you need a server that's actually going to perform well, you'll need to sign up for Tommy or Ricky at midnight UTC when signups open (or you can donate and we'll give you an account on Tommy as a thank you gift). As for your Internal Server Error, that's usually caused by one of four things: PHP file permissions (PHP files must be 644, they upload as 664 and you need to change them, Apache/suPHP does not accept files that are writable by the group), invalid .htaccess files (try renaming it so it's ignored), broken code, or invalid shebang lines (for Python/other CGI scripts). Moved to customer service.
-
[Solved] Suspended: lprcela TOMMY DOWN PROBLEM
wolstech replied to parcela2's topic in Escalated Requests
Could be. Loops should always contain extra logic to make sure they won't get stuck forever in the event of a failure. Have logic to check all of your results from connections/queries/etc., If you want it to retry, add a counter that increments on failure. If it fails too many times, it just logs the failure and exits.