Jump to content

Byron

Moderators
  • Posts

    9153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. When was the last time you logged into your cpanel? Please try logging in through the link in my signature.
  2. Please give it another 24 hours. I'm still seeing your account in the queue. We must have had a backlog of new accounts. if your still not up tomorrow let me know.
  3. Changing your domain name put you behind in coming out of queue. Give it another 24 hours and your password is still the same.
  4. OK I'm seeing your new account in the queue. Hopefully you should be up this time tomorrow.
  5. Ok your domain name is now: justond.heliohost.org
  6. Sorry but you'll have to register again. It seems when the corruption script got ran it found something wrong with your info and deleted your account. Make sure you don't use any alternate characters when you register.
  7. I'm still seeing your account as being in the queue. Give it until tomorrow and if you still can't login, post back. Also make sure you use ALL lowercase when logging in.
  8. This support request is being escalated to our root admin.
  9. It's been disabled to take some of the load off of the server. http://www.helionet.org/index/index.php?sh...4&st=0&
  10. Done
  11. I just checked and your site is in the queue and your domain name is pointing to us. It should be up tomorrow.
  12. It's working. I get redirected to this page: http://shadowwolf.heliohost.org/login/main_login.php Refresh your browser's cache. BTW, you can set up your parked domain so that it doesn't show a redirect. So when you go to shadowwolf.co.cc it will show that domain in your browser. Just remove the redirect at ypur Parked Domains at your cpanel.
  13. Yes it's working fine for me now. Thanks!
  14. Here's something else to consider. If that forum was pre-made and worked on another server, your problem might be this: http://www.geeklog.net/faqman/index.php?op=view&t=38
  15. You can't have any html output before the header redirect. I'm guessing your using an if statement to detect a cookied login? If that's the case this should go to the top of your loginforum.php before any html output: <?php if ( $_COOKIE[pass] == "forumpassword" ) { header( "Location: forum.php" ); exit; } ?>
  16. Update: I just changed the forwarding address at my cpanel mail to yahoo.com instead of my gmail account and that cleared the error above and it went through to yahoo ok. So we definetly got a problem with gmail.
  17. Yes and I think it's called "Contact Email" at the cpanel. EDIT: It's actually called Update Contact Info.
  18. I've reset your password and PM'd it to you.
  19. Yeah we are currently having a problem with gmail recieving our emails. When you try to login, are you using all lowercase?
  20. Here's an example of how I'm setting a cookie on one of my pages: $to = $_POST[sendto]; # Set Cookie & Expire Time $expire = time()+60*60*24*60; # (60 sec * 60 min * 24 hours * 60 days) setcookie("sendto", $to, $expire); Then down in my form: <input type="text" name=""sendto"" size="30" value="<?php echo $_COOKIE[sendto]; ?>"> Can you give an example of what your doing?
  21. Byron

    Awesome news!

    This really is Awesome news. Thanks djbob!
  22. We're hoping to have ASP.NET back up after the first of the year.
  23. Seems I'm getting an error if I try sending to my heliohost account.
  24. No I'm just using a script to connect to sendmail as a test mail. It's always went through in the past: #!/usr/bin/perl -w use CGI; $sendmail = '/usr/sbin/sendmail -t'; $recipient = 'me@gmail.com'; $sender = 'byron@byrondallas.heliohost.org'; $mail_body = 'Test Email'; open(MAIL, "|$sendmail -oi -t") or die "Can't open pipe to $sendmail: $!\n"; print MAIL "To: $recipient\n"; print MAIL "From: $sender\n"; print MAIL "Subject: Test Mail\n\n"; print MAIL "$mail_body"; close(MAIL) or die "Can't close pipe to $sendmail: $!\n"; print "Content-type: text/html\n\n"; exit; Likewise with php mail: <?php mail(bla, bla, bla); ?> --------------- I just went to my cpanel Squirrel mail and tried to send an email to yahoo and gmail and got this message returned: I also have a Contact Form on my site that uses the cgimail through cpanel and it gets bounced back also.
  25. Good idea. It seems that is "the most elegant solution".
×
×
  • Create New...