-
Posts
670 -
Joined
-
Last visited
-
Days Won
18
Everything posted by KazVee
-
This support request is being escalated to our root admins. In the meantime, you can have a look at our guidance page here https://wiki.helionet.org/common-errors/mail-delivery-problems#spf-dkim-and-dmarc-records which offers some information on how you can use mail-tester.com to check the deliverability of emails, once the DNS has been set up for you.
-
Hello! Here's our how-to guide on how to donate for the increased storage: https://wiki.helionet.org/accounts/donation-increase-storage Once you've donated, please post the transaction details (these are different depending on how you donated, guidance on what info is needed is included in the page linked above). Then, once the transaction is verified, your account storage will be increased. Please let us know if you get stuck on any of the steps.
-
I've escalated this request so Krydos can handle this for you.
-
Plesk is a control panel, similar to cPanel. You can change your PHP version inside Plesk, here's a link to the steps showing you how: https://wiki.helionet.org/features/php#change-php-version Changes do take up to 2 hours to take effect because it needs an Apache server reset. Once you choose the new PHP version you want, you'll get a message banner telling you how long until the new version becomes active. Next time, since your original request was to add a domain and this thread was marked as [Solved], I'd recommend you make a new thread for a new request topic (like changing your PHP version). It's not a huge deal since I got the notification that you'd quoted me in this thread anyway, but it's more so that further (or new) requests don't get accidentally missed and the helpers here can give you an answer as soon as we're able to. It also helps other users who may be searching the forum for things like how to change their PHP version in Plesk. ? Also, please be aware that WordPress is one of the top reasons that people get their account suspended for High Server Usage. We've made a help page here (https://wiki.helionet.org/misc/wordpress) with suggestions on how to reduce account load. The best suggestion is not to use WordPress in the first place, and there are some great alternatives suggested, but if you cannot move away from WP there are also suggestions on how to try to keep your account load under the shared hosting limits. You can keep an eye on your account load here: https://heliohost.org/dashboard/load/
-
There's no such thing as a silly question, no one was born knowing how to code. ? Since you got the 'Node.js is working' message, this means your Node app is running. As you are using Express, the how-to guide we have specifically for Express might also be helpful for you: https://wiki.helionet.org/tutorials/node.js/express.js The app.js file the Express guide walks you through building is the backend of the site. To actually see your site, you would want to make HTML files (also maybe CSS and JavaScript too) for the frontend side. Then to connect the frontend to the backend, the official Express docs (https://expressjs.com/en/starter/static-files.html) recommend 'app.use' to serve up static files that you put into a folder named 'public', for example. If you still get stuck, googling for terms like "node express serve static files" brings up some how-to docs and YouTube videos that explain in a bit more detail how to connect it all together. Since Node apps are a major cause of people's accounts getting suspended for high server load, make sure you keep an eye on your account load here: https://heliohost.org/dashboard/load/ to make sure it doesn't go over the limits.
-
My error_log only shows errors from my first Flask app
KazVee replied to ujcis's topic in Customer Service
WSGI needs to be added separately to each subdomain. I notice that ujcis already submit a request to have WSGI added to this new one, which I've just escalated so it'll be handled in the other thread. ?- 6 replies
-
- 1
-
-
- error_log
- flask.wsgi
-
(and 1 more)
Tagged with:
-
This support request is being escalated to our root admins.
-
User has confirmed on Discord that they see it working on their side too now. ?
-
You initially posted this in the Website Coding & Management section, next time please post support requests in the Customer Service section (https://helionet.org/index/forum/45-customer-service/) to prevent them accidentally getting overlooked. I've escalated your request and a root admin will set up the remote access for you when they can. They will confirm back on this thread to let you know it's been done. ?
-
The default Plesk page confirms that your site is working and that files are loading as they should. If your new account is less than 2 hours old, please note that it can It can take up to 2 hours for your account to be fully active. You can read more about that here: https://wiki.helionet.org/hosting/signing-up#up-to-2-hours-for-activation To update the content of your website, you need to replace the `index.html` page with an `index.html` page that has your own content, and the changes should appear for you once the file is uploaded, once your account is a full 2 hours old.
-
I've changed the domain as requested. Please note that it can take up to 2 hours to be fully working. If after 2 hours, it doesn't work on your side, please make sure you clear your web browser cache: https://wiki.helionet.org/misc/clear-your-cache In the meantime, please either: Point your domain to the HelioHost nameservers: `ns1.heliohost.org` and `ns2.heliohost.org`, or Create an A record and point it to the IP address for the server you're on. You can find the IP address to use inside Plesk > Websites & Domains > [domain name] > and check at the bottom of the page. Please let us know if we can help with anything else. ?
-
Hello, PHP is enabled by default on all accounts. You can check on this page to see the versions available and how to change to a different PHP version if you need to: https://wiki.helionet.org/features/php If after checking the above page you still have trouble with PHP please let us know what version you are trying to use and more details about the problem (error message, etc.)
-
This support request is being escalated to our root admins.
-
[Solved] Set Up SPF, DKIM, and DMARC Records
KazVee replied to palacios's topic in Escalated Requests
This support request is being escalated to our root admins. -
We have a how-to guide on cron jobs (they're called "Scheduled Tasks" in Plesk) here that may be helpful: https://wiki.helionet.org/tutorials/plesk/cron-jobs Please give that a try and let us know if you have any problems/error messages. ?
-
I've reset your account and you should receive an email shortly so you can take the next steps to recreate it. I made a backup before the reset, so if you discover you need your old files, you can download the backup here: https://heliohost.org/backup If you're not sure how to extract the backup files, we have a how-to document in our Wiki here: https://wiki.helionet.org/tutorials/plesk/account-backups Please let us know if you need help with anything else. ?
-
My account has been suspended
KazVee replied to francisellington's topic in Suspended and Queued Accounts
Our multiple account detection system suspended your account because it thinks you may have more than one account. The first line in our Terms of Service (https://wiki.helionet.org/hosting/terms) mentions that each person is allowed to have one account. Is 'francisellington' the account you want to keep? -
[Solved] Account Unsuspended Request
KazVee replied to lastijo350's topic in Suspended and Queued Accounts
Your account was indeed suspended for high server load: 100.74 GB memory. The sudden drop in the graph is when the suspension happened. Node apps are pretty demanding on server resources, so we recommend making sure that your Node app uses Passenger, which is a feature on the servers designed to reduce account load. If you build your Node app in the same way as the example app in our Wiki tutorial (https://wiki.helionet.org/tutorials/node.js), it will automatically use Passenger. You can also monitor your site load within your account dashboard here: https://heliohost.org/dashboard/load/ I've unsuspended your account, it may need a few minutes to get back up and working again. -
I've added those domains to your account. Please note that it can take up to 2 hours for them to fully work. If after 2 hours they don't work on your side, please make sure you clear your web browser cache: https://wiki.helionet.org/misc/clear-your-cache In the meantime, please either: Point your domain to the HelioHost nameservers: `ns1.heliohost.org` and `ns2.heliohost.org`, or Create an A record and point it to the IP address for the server you're on. You can find the IP address to use inside Plesk > Websites & Domains > [domain name] > and check at the bottom of the page. Please let us know if we can help with anything else. ?
-
This support request is being escalated to our root admins.
-
This support request is being escalated to our root admins.
-
I'm assuming you meant with the `helioho.st` ending, same as your initial one had. ? I've made the domain change now for you, but please note that it can take up to 2 hours to be fully working. If after 2 hours, it doesn't work on your side, please make sure you clear your web browser cache: https://wiki.helionet.org/misc/clear-your-cache Please let us know if we can help with anything else.
-
I've added that domain to your account. Please note that it can take up to 2 hours to be fully working. If after 2 hours, it doesn't work on your side, please make sure you clear your web browser cache: https://wiki.helionet.org/misc/clear-your-cache In the meantime, please either: Point your domain to the HelioHost nameservers: `ns1.heliohost.org` and `ns2.heliohost.org`, or Create an A record and point it to the IP address for the server you're on. You can find the IP address to use inside Plesk > Websites & Domains > [domain name] > and check at the bottom of the page. Please let us know if we can help with anything else. ?
-
I've reset your account and you should receive an email shortly so you can take the next steps to recreate it.I made a backup before the reset, so if you discover you need your old files, you can download the backup here: https://heliohost.org/backup If you're not sure how to extract the backup files, we have a how-to document in our Wiki here: https://wiki.helionet.org/tutorials/plesk/account-backupsPlease let us know if you need help with anything else. ?
-
Hello! I have now changed the domain for you. Please note that it can take up to 2 hours to be fully working. If after 2 hours, it doesn't work on your side, please make sure you clear your web browser cache: https://wiki.helionet.org/misc/clear-your-cache Please let us know if we can help with anything else. ?