-
Posts
24,849 -
Joined
-
Last visited
-
Days Won
885
Everything posted by Krydos
-
Your account was suspended because our systems detected that you might have more than one account. We understand that no one ever reads our terms, but as a reminder, our Terms of Service state that each user is allowed to have only one account. The reason we have to enforce this rule is because our servers are already overloaded the way it is, and it wouldn't be fair to everyone that is turned away each day for you to have more than one when so many others have none. One common reason people create more than one account is to get around our storage limit of 1000 MB. Did you know that we will give you another 1000 MB of storage for each $5 USD donation you make up to 5000 MB total? If you'd like to increase the storage of your account just make a donation and then let us know your transaction ID and username. Another common reason people create more than one account is to host more than one website. Did you know that you can host as many websites on your one account as you want? Unlike a lot of free hosts we offer unlimited alias domains, unlimited addon domains, and unlimited subdomains. If you need any help adding another website to your account just let us know. Another common reason people create more than one account is to try out several servers at once, or to transfer a website between accounts on different servers. Did you know that an admin can move your account for you for as little as a $1 USD donation? This will save you the trouble of signing up again, and deleting your account, etc. Sometimes our systems flags you as possibly having more than one account when you share a computer with family, friends, coworkers, other students, etc. If this is your situation we apologize for the suspension, and we'll be happy to unsuspend all of the involved accounts after you provide proof that each of the accounts belong to a different person.
-
O cant acess my account and website os off line.
Krydos replied to Zerotrash's topic in Customer Service
I took ns1 back offline until all the zones finish syncing. This should force everyone to use ns2 which is working and has all the zones already. Hopefully this will make everyone's websites work for now. -
O cant acess my account and website os off line.
Krydos replied to Zerotrash's topic in Customer Service
Yeah, my bad. Ns1.heliohost.org is back online, but the zones are still syncing up. So for some of the world your domain is down and for the rest it is up. It just depends on whether they randomly choose ns1 or ns2 to query. If someone has visited your site recently and still has the ip address cached on their computer or their router or their isp they won't notice it's down. I didn't realize it would take so long to sync the zones back up. -
Does phpmyadmin ever work? I know you say "continuously", but just verifying. There may me something wrong with your account I suppose.
-
I just tested phpmyadmin on Johnny and it works for me. 500 errors can happen when the load is high. The solution is to either wait for a few minutes for the load to go down, or switch to a server with lower load. The Johnny server is an experimental server and is only intended for experimenting, not running a production website. If you want a server that is faster, has better uptime, and has less errors we recommend Ricky or Tommy.
-
Ahh, ok. I was busy checking skrill and gofundme and stuff. Didn't think to search by email.
-
That account is suspended for Phishing. HelioHost does not tolerate phishing activity of any kind, and for security reasons will not unsuspend, back up, or delete an account that was involved in phishing. You will need to create a new account and restore any backup you may have. Please be aware that you will not be able to reuse any domains on your suspended account, and will need to pick a new username. We apologize for any inconvenience this may have caused.
-
I'm having trouble finding your donation. What service did you use to donate? Paypal transaction ids are alphanumeric, not just numeric.
-
High Wordpress load again. Unsuspended.
-
Unblocked. /var/log/maillog-20210606:Jun 6 03:01:28 tommy dovecot: imap-login: Aborted login (auth failed, 2 attempts in 4 secs): user=<admin@<removed>.blog>, method=PLAIN, rip=173.19.20.227, lip=65.19.143.6, TLS, session=<tIHjIxDELNqtExTj>
-
Your username is actually ashutos2. Unarchived.
-
Put this in /home/maena/public_html/maena/.htaccess RewriteEngine On RewriteCond %{REQUEST_URI} ^/maena/ [NC] RewriteRule ^(.*)$ https://maena.heliohost.us$1 [R=301,L] Put this in /home/maena/public_html/duo/.htaccess RewriteEngine On RewriteCond %{REQUEST_URI} ^/duo/ [NC] RewriteRule ^(.*)$ https://duo.heliohost.us$1 [R=301,L] Obviously I haven't tested this so let me know if it doesn't work and we can try to figure out why.
-
It's working for me? Is it working for you now too?
-
Closing due to inactivity.
-
It looks like they gave up. Marking solved.
-
You can use .htaccess to redirect people from a subdirectory to a subdomain. Post some actual subdirectory and subdomain names instead of examples and I can write some actual .htaccess code for you.
-
I checked to see if your changed your domain successfully... ...and you did not. You typed your domain as 'jrx2-dev' which doesn't have a valid tld. You have to actually type out the whole thing 'jrx2-dev.heliohost.us' into the box. Anyways, I went ahead and changed it for you. Also, it used to take up to 48 hours to change a main domain, but now (if you do it right) it takes less than 2 hours.
-
If you haven't donated and don't want to or can't for some reason you can move your account yourself for free by following these steps: Backup your accountDelete your accountCreate your Tommy account for free at midnight UTCRestore your backup
-
We no longer provide heliohost.org subdomains. If you already have one you're welcome to keep it, but any new free subdomains have to be heliohost.us. Is jrx2-dev.heliohost.us ok with you? Also for future record you can change your main domain yourself with this page http://www.heliohost.org/scripts/domain.php but since that page was made in like 2009 it doesn't always work right so if it fails an admin can change it for you. I plan on making a new main domain change page that works better soon.
-
[Solved] Remote Access Request for Postgres
Krydos replied to T-RexSystems's topic in Escalated Requests
For anyone else who reads this you can't just enable it for all users, you have to specify one user. He told me the user on discord though. Remote access enabled. -
[Solved] Unable to connect to remote postgresql?
Krydos replied to hieuminh's topic in Escalated Requests
Remote access enabled. -
Unarchived. It's been more than 3 years since we've seen you, welcome back.
-
Johnny's max_user_connection is 4. Ricky's max_user_connection is 6. Tommy's max_user_connection is unlimited. (But if someone starts to abuse this it will be limited as well.) That means your code is either trying to open more than 4 connections at once, or isn't closing connections properly. A lot of the time you can change the number of max connections in your configuration. If you're writing your own code make sure each connection is closed immediately after it is done being used. Most software is written for performance, not for behaving well on a shared host. If you have a vps and you're the only website on the server then it will increase performance slightly to open 100 mysql connections at once. Also there is a slight overhead when you open and close connections so you can get a little bit more performance by not closing them and using the same connection over and over. Obviously this isn't fair to the thousands of other users on your shared server who won't be able to connect to mysql at all because of your overuse. Therefore shared hosts have to have limits. That's actually an interesting idea that I've never considered. Personally I like to do mysql queries on the command line, and it would be annoying as hell for me to have my connection constantly being closed over and over. For instance I might create a new table on the command line, and then write some code, and then realize I need to add another column so I'll switch back to the mysql command line and run an alter table command. I also like to test mysql queries on the command line too before adding them to my code. If I had to reconnect every single time I wanted to run another query it would drive me insane. I'm not sure if many people code like this though. Johnny's max_connections is set to 150. That means all the users on the whole server added together cannot exceed 150. This isn't the error you're seeing though. You're seeing max_user_connections which is just you, not affected by everyone else. The reason max_connections has to be set to a sane level is each mysql connection increases the memory required by mysql. With the current settings mysql uses about 3 GB of memory out of the 16 GB on the server. This is already a pretty sizable amount considering you need a ton of memory for apache processes and tomcat and everything else. You could switch to Ricky or Tommy, but like I said above if you abuse the limit on Tommy you'll either be suspended or you'll ruin it for everyone else because I'll have to set a limit.
-
Unarchived.
-
Changed.