-
Posts
17,334 -
Joined
-
Last visited
-
Days Won
639
Everything posted by wolstech
-
You have to design your scripts to be stoppable (or write a script to kill it). There is no UI for doing so. I killed the script for you. I do see the index.sh in your cgi-bin folder, and looking at the code, visiting index.sh?action=stop should trigger it to kill your process. The good news is based on the past few hours of usage, your script wasn't even that heavy and shouldn't have a problem with memory usage even if you need it to run continuously.
-
If you want them to show the same content, we can add it an alias. Otherwise we can add it as an addon domain (see below). The main difference is that addon domains each have their own document root, so you can host different content on each domain. Addon domains get a folder named after the domain name as their document root, the main domain uses httpdocs as its root. How do you want it added?
-
This requirement went away when we switched to Plesk. We support third party DNS now, where you can just use A and AAAA records as Moneybroz said above. You can find the IPs in Plesk once the domain is added. Also, you'll need to add additional records if you want email functions to work (an MX, a few TXT records, and an additional A or CNAME if you want webmail). The only domains that I'm currently aware of that are problematic here are those from afraid.org/Freedns, and that's because of poor implementation on Afraid's part.
-
[Solved] Request to increase max upload size and add a subdomain
wolstech replied to Palpale's topic in Escalated Requests
Please set your name servers ns1.heliohost.org and ns2.heliohost.org. We cannot configure this for domains using Cloudflare (you would need to do it yourself). -
Domain changed. Usernames cannot be changed without resetting your account.
-
Domain added. It may take up to 2 hours to work.
-
I'll let Krydos handle this... In the meantime, which accounts are affected and which one do you want to keep?
-
[Solved] Request to increase max upload size and add a subdomain
wolstech replied to Palpale's topic in Escalated Requests
Turnaround time on support requests can sometimes be 24-48 hours or longer, especially if it needs Krydos's attention. Please be patient. -
[Solved] http://bcc1979.helioho.st/
wolstech replied to bcc1979's topic in Suspended and Queued Accounts
Wordpress is notorious for causing excessive load, and is one of the leading causes of a load suspension. The spike on the below chart was your WP site hogging an absurd amount of both CPU and memory. The CPU usage is what got you suspended...you used 11348 in under 2 hours, the limit is only 10000 for an entire 24 hours. Either your site is broken, or you have a plugin or something installed that is way too heavy to host here (woocommerce, elementor, and wordfence are the three worst offenders, but others can also definitely cause this issue). You can take a look at this page on Wordpress for information on how to reduce its load as well as alternatives to WP: https://wiki.helionet.org/misc/wordpress Please fix it quickly. Unsuspended. It may take a few minutes to work. -
You're suspended for having more than one account. Which one do you want to keep?
-
You can only call files in your home directory due to a chroot, so you can't actually access the Python binary. The easiest way to make this work is to put together a script in the cgi-bin folder that works when accessed in your browser, and then schedule it to be called using the fetch web URL feature.
-
[Solved] Help Needed: ionCube and PHP 8.1
wolstech replied to briangarcia's topic in Customer Service
Any software that requires ion cube is intentionally not supported on the free service due to a history of piracy. We even specifically removed WHMCS from our softaculous offerings because of this issue. You would need to buy a VPS if you wanted to run that. Please keep in mind that if you go this route and we receive an abuse report for you using a pirated version of the software, your VPS will be subject to a ban without a refund. -
You're making progress. New code seems to be more efficient in that it isn't slamming the memory usage, but something happened to spike it. Do you know what might have happened around 0900 that caused the jump and pushed you over the limit?
-
That's why. The server is designed to check if the website is hosted here and disables the domain if it's not. Users on Cloudflare used to be exempt just due to using Cloudflare so you never had an issue before, but I believe Krydos updated the system to now verify these domains via file presence...which a mail-only domain will fail. I believe Krydos can exempt you so the domain cleanup script won't disable it... Escalating.
-
Are you actually hosting your website with us or just email? Usually when we see this, it's because either the website isn't hosted here, or in a few odd cases we've found the domain cleanup script was broken...if the website itself is hosted here, I'll escalate to Krydos to check why this was disabled.
-
Be aware that the .us.to and .uk.to domains or any other that's run by afraid.org have known issues. Afraid/FreeDNS sucks when it comes to supporting their domains properly, and you're likely going to run into weird issues like email not delivering and Lets Encrypt claiming its rate limited when it shouldn't be (the most commonly reported issue I see with these domains). These issues aren't HelioHost's fault, but rather that of Afraid, and most hosting companies exhibit some odd behaviors with their domains. For basic HTTP they're fine I suppose...
-
where can fide dir for /../vendor/autoload.php
wolstech replied to evrawad's topic in Website Management and Coding
You need to either: Find a complete copy of the application that's not missing that folder. Or, if it has a composer.json file, you need to use composer to assemble it. Plesk has a composer tool which can be used for this, or you can follow the application developer's directions (you'll need to do these locally on your PC as most need command line access which we don't offer), then upload the final folder structure that's output by composer. -
where can fide dir for /../vendor/autoload.php
wolstech replied to evrawad's topic in Website Management and Coding
It should come with the application. That file and all the stuff it references will vary depending on the program and version. More often than not this file is generated by composer. If the app uses composer, this error could be that you either didn’t run the composer script or said script failed. -
Try using tommy.heliohost.org or 65.19.141.77 as the host name. Using your chosen domain for this may work in some instances, but for non-HTTP services, it's not fully supported and things tend to work best when you use the server name (tommy.heliohost.org in your case) as the hostname.
-
Please set the name servers for that domain to ns1.heliohost.org and ns2.heliohost.org. Alternately, for users with external DNS servers, you can use an A record pointed to 65.19.141.67 and an AAAA record pointed to 2001:470:1:1ee::2009
-
Invite sent. If you need a copy of your old account's data, it's available from https://heliohost.org/backup/ Thank you for the donation
-
You should be able to do this by using the scheduled tasks option in plesk and having it call your .py file.
-
See https://helionet.org/index/topic/53855-how-to-use-django-on-plesk/#comment-223034 for how to use Django without command line access.