techneektv Posted February 12, 2011 Share Posted February 12, 2011 Hey there, I've been trying for about a week to sign up for Helio Host. Everytime I try, I get a message telling me that all the signup spots for today have been used, and to try again tomorrow at 12:00 western time. I've tried at very early times, but I still can't get an account. Can someone help me out, or make an account for me? I really need to get a website up. Thanks for any help that can be provided! Quote Link to comment Share on other sites More sharing options...
manish_kvs Posted February 12, 2011 Share Posted February 12, 2011 Just have a look at the bottom right corner of this page. you will see time section there. that time zone is used by all the helio services. Keep an eye on that time. just after it crosses the specified time, try to sign up for the new account. it will work. don't worry. I too got this error message the first day and on second day, i had a working account. Quote Link to comment Share on other sites More sharing options...
Wizard Posted February 12, 2011 Share Posted February 12, 2011 Sign up works correctly. If you wake up and sign up at 12:00PST, you should be able to get an account. Quote Link to comment Share on other sites More sharing options...
Guest Geoff Posted February 12, 2011 Share Posted February 12, 2011 I made a simple script that tells you when to sign up: http://playground.geoffish.tk/signup.php Quote Link to comment Share on other sites More sharing options...
manish_kvs Posted February 13, 2011 Share Posted February 13, 2011 @ ADMINS: by the way, how many sign ups are allowed per day? Whats the idea behind limiting the number of sign ups? I think you should increase the limit because some days before i saw another user having same problem. Quote Link to comment Share on other sites More sharing options...
Guest Geoff Posted February 13, 2011 Share Posted February 13, 2011 The idea is to only let people sign up who really want to sign up. Heliohost is limited on resources, and it takes a lot of resources to create an account. We want people who will create an account, and stick with it. Not people who will create an account, and then change their minds and not use their account. Also, right now, we have too many old accounts that people no longer use, that we are trying to delete. This takes a lot of time, so right now, we are limiting signups until we can shed all of the inactive accounts. Quote Link to comment Share on other sites More sharing options...
Wizard Posted February 13, 2011 Share Posted February 13, 2011 @ ADMINS: by the way, how many sign ups are allowed per day? Whats the idea behind limiting the number of sign ups? I think you should increase the limit because some days before i saw another user having same problem. I don't know the signup limit off the top of my head. As for the idea, we have more than 20000 accounts on the server(s) right now. That's more than what cPanel uses to load test their software. We have to throttle the amount of accounts we have or else everyone will suffer slowdown. Quote Link to comment Share on other sites More sharing options...
jje Posted February 14, 2011 Share Posted February 14, 2011 I made a simple script that tells you when to sign up: http://playground.geoffish.tk/signup.php @Geoff : Cool script, but unfortunately it's broken. That script is showing the time on my computer instead of the PST time. I'm on GMT+1 , and it is showing as the same time as my computer (which isn't PST). Quote Link to comment Share on other sites More sharing options...
Byron Posted February 14, 2011 Share Posted February 14, 2011 You can find local (server) time at the top of this example. http://byrondallas.heliohost.org/ssi.shtml <!--#echo var="DATE_LOCAL" --> @Geoff: If your grabbing the time using php, put this at the top of your script and it should correct the local time: putenv("TZ=US/Pacific"); Quote Link to comment Share on other sites More sharing options...
Guest Geoff Posted February 15, 2011 Share Posted February 15, 2011 Thanks for the tip, bryon. I figured since I was getting the time in PHP, it would be the server time. Quote Link to comment Share on other sites More sharing options...
Byron Posted February 15, 2011 Share Posted February 15, 2011 Thanks for the tip, bryon. I figured since I was getting the time in PHP, it would be the server time. You figured right. You didn't happen to change your time zone in your root htaccess file did you? Quote Link to comment Share on other sites More sharing options...
Guest Geoff Posted February 15, 2011 Share Posted February 15, 2011 Nope. Here is my php script: <?php $thetimeis = getdate($_SERVER['REQUEST_TIME']); $thehour = $thetimeis['hours']; $theminute = $thetimeis['minutes']; $thesecond = $thetimeis['seconds']; $time_left = 24 - $thehour; if($thehour > 12){ $thehour = $thehour - 12; $dn = "PM"; }else{ $dn = "AM"; } ?> <h1> When to sign up</h1> <br /> <?php if ($time_left != 0) { ?> Please wait <?php echo $time_left; ?> hours before signing up. <?php } else {?> <br /> <h4>HURRY UP AND SIGNUP BEFORE SOMEONE ELSE DOES FIRST!<h4> <?php }?> <br /> <script type="text/javascript"> setTimeout('window.location.reload();', 60000); </script> <?php echo $thehour; ?> And here is my htaccess: ErrorDocument 500 /home/gfishing/errors/500.htm ErrorDocument 400 /home/gfishing/errors/400.htm <FilesMatch "error_log"> deny from all </FilesMatch> AddHandler cgi-script .cgi Options +ExecCGI Yet, on the forums, the hour is "12", when on my script, the hour is "4". I can't figure it out. Quote Link to comment Share on other sites More sharing options...
Byron Posted February 15, 2011 Share Posted February 15, 2011 The time on the forum isn't correct, so don't even go by that. Try my simple script and see if you get the same results. I had to change the time zone in my script because my site is set for Eastern time in my htaccess file. Also remember php hours are like this - 00 to 23. <?php # set time zone putenv("TZ=US/Pacific"); # get current hour $hr = date("G"); # get current minute $min = date("i"); # subtract time remaining $hrlft = 23 - $hr; $minlft = 60 - $min; # OUTPUT echo "Today's date ".date("F j, Y, g:i a")."<br />"; echo "Signups reset in $hrlft hours $minlft minutes <font color=\"#000080\">(12:00 am pst)</font>"; ?> http://heliohost.uni.cc/sign-up.php EDIT: I just checked yours and it seems to be showing the correct hours remaining. So I'm guessing your ok. Quote Link to comment Share on other sites More sharing options...
Guest Geoff Posted February 15, 2011 Share Posted February 15, 2011 Mine script worked fine, but yours looks nicer, so I'll just put a link to that in my sig. Quote Link to comment Share on other sites More sharing options...
jje Posted February 15, 2011 Share Posted February 15, 2011 Cool script, Geoff and Byron! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.