-
Posts
24,861 -
Joined
-
Last visited
-
Days Won
885
Everything posted by Krydos
-
I commented out the deny from all line in the .htaccess and it seems to be working fine https://xn--plised-pxa.heliohost.org/ Normally you'd see a 403 but this is a weird cPanel transfer account so they do weird things sometimes I guess. If you're having issues with the account I would recommend doing a full backup and then we can reset the account to give you a fresh start and then restore the files and databases that you need back into the fresh working account.
-
[Inactive] My domain name 101061.XYZ can not be accessed properly
Krydos replied to tl404's topic in Escalated Requests
Try settings your NS records to ns1.heliohost.org and ns2.heliohost.org. If it works you can switch it back to Cloudflare later. -
[Solved] Delete these 5 Domains from my account please...
Krydos replied to skullys's topic in Escalated Requests
Removed. -
Python CGI, Django, Flask, Python cron, Python constantly running process such as a bot, or something else?
-
You had a 658 MB access log for the forum.mupdvig.tk domain. Your high load and disk space overage are certainly related. Haters gonna hate, playas gonna play, and spambots gonna spam. Fix it quickly.
-
@garrigue Let us know if the All In One WP Migration tool works for you. If it doesn't we could try randomly increasing the timeout again to maybe 5 minutes this time. @artistwalks Thanks for the suggestion. All of the HelioHost staff, myself included, hate Wordpress with a passion because it is constantly getting hacked and causing high load so none of us will touch it with a 10 foot pole. Therefore we know very little about plugins for Wordpress.
-
I've increased the proxy timeout on that domain from 60 seconds up to 180 seconds so maybe it won't give that error again, but I want to make an observation: Tools are meant to make things quicker and easier. Dumping the database to an .sql file, zipping the files, and restoring the backup to transfer a Wordpress site to another host takes like 5 minutes. How much time should you waste trying to get this transfer tool to work? Should we spend 5 days trying different things to make this Updraft tool work when it only takes 5 minutes to do it manually? Would you spend 5 days driving somewhere when you could walk there in 5 minutes? If it still gives that error after 180 seconds we could try increasing it more.
-
Forum account, Tommy account, or both?
-
Handling CPU load spikes or high load using Cloudflare.
Krydos replied to adamlg's topic in Website Management and Coding
Thanks for posting this information. If someone has issues with high load we'll suggest this as something to try.- 5 replies
-
- cpu load
- cloudflare
-
(and 1 more)
Tagged with:
-
Does the 504 error happen every single time you try, or have you only tried once?
-
Are you able to access your VPS now?
-
Yeah, since we're all volunteers and we don't have a full staff of employees working 40 hours a week it takes us a little longer to get stuff like this implemented. Thanks for being understanding, and thanks in advance for the donation. Let us know if you need help with anything else.
-
The wendyfiore account has been unsuspended. Try logging in with the old password first. Ideally it would be great if our suspension system restored the previous password when an account is unsuspended, but it doesn't always work right and I'm still trying to debug it. If you can't login with your previous password let us know and we can send a password reset link. Yes, we are planning on offering free transfers back to Tommy for previous users when the uptime is better and that server isn't so crowded. We are also going to be releasing a new server named Morty soon that won't require logging in every 30 days and no high load suspensions, etc. It will start at $1 per month, and scale upwards in price to a maximum of $0.57 per day depending on how high your load is on that day. When Morty is released we expect quite a few people to switch from Tommy to Morty and that should make quite a bit of space on Tommy. You could also transfer from Johnny to Morty at that point if you'd prefer to not have to login every 30 days.
-
You should do a malware/virus scan of your computer, and when you're certain the spam emails won't happen again you may pick one account to be unsuspended. You can download a full backup of both accounts from https://heliohost.org/backup/ if you wish.
-
Both of your accounts attempted to send about 6000 spam emails. As it says in our terms of service you aren't allowed to send spam from our servers. Did you receive written permission from an administrator to have more than one account?
-
Like it says in the email you get when your account is created, and like it says on your dashboard every time you login: DNS editing on your own isn't finished yet. Uncheck the wildcard box as it's not supported yet.
-
Does it work now?
-
Another password reset link has been emailed to you.
-
You'll need to renew your account now https://heliohost.org/renew/
-
SSL connection to mysql database via remote site
Krydos replied to jaysaurus's topic in Customer Service
I tested it out a bit myself, and here is what I came up with #!/usr/bin/python3.10 from __future__ import print_function import sys import mysql.connector from mysql.connector.constants import ClientFlag print("Content-Type: text/html\n\n") config = { 'user': 'krydos_test', 'password': '<removed>', 'database': 'krydos_test', 'host': 'tommy2.heliohost.org', 'client_flags': [ClientFlag.SSL] } cnx = mysql.connector.connect(**config) cur = cnx.cursor(buffered=True) cur.execute("show status like 'ssl_cipher'") print(cur.fetchone()) print("<br>") cur.execute("select * from test") result = cur.fetchall() for row in result: print(row) cur.close() cnx.close() You can see the script in action at https://krydos2.heliohost.org/mysql_ssl.py which is running on Johnny and connecting securely to a MySQL database on Tommy. Please note: There are no ca.pem or any other client keys or client certificates needed. -
SSL connection to mysql database via remote site
Krydos replied to jaysaurus's topic in Customer Service
Well, I think the guides you're following assume that the server certificate is self-signed, which explains why you think you need to include the ca.pem and everything. Our certificate is issued by Let's Encrypt (not self-signed) and any modern OS should accept secure connections to it without needing the chain. And no, we're not going to give you the key because then the SSL is compromised and actually less secure than not using SSL at all. -
You've been emailed a link to reset your password.
-
SSL connection to mysql database via remote site
Krydos replied to jaysaurus's topic in Customer Service
Try this https://krydos.heliohost.org/ca.txt -
SSL connection to mysql database via remote site
Krydos replied to jaysaurus's topic in Customer Service
The MySQL server doesn't use the SSL certificate for your domain. MySQL's SSL is configured with the certificate for the domain tommy2.heliohost.org. Use that for your host. -
You still can't use password authentication to send emails through Gmail. You have to use xoauth to send through Gmail, or use some other service other than Gmail to use password authentication.