Jump to content

Byron

Moderators
  • Posts

    9,153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. Yeah we are currently having a problem with gmail recieving our emails. When you try to login, are you using all lowercase?
  2. 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?
  3. Byron

    Awesome news!

    This really is Awesome news. Thanks djbob!
  4. We're hoping to have ASP.NET back up after the first of the year.
  5. Seems I'm getting an error if I try sending to my heliohost account.
  6. 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.
  7. Good idea. It seems that is "the most elegant solution".
  8. Ok I've registered your account and it should be up tomorrow. Let me know if you still have problems.
  9. You should have registered with your domain name and pointed it to our nameservers: ns1.heliohost.org ns2.heliohost.org If you did that, it should only take 24 to 48 hours to resolve.
  10. Try logging in through this url: http://heliohost.org:2082/frontend/x3/index.phpcp
  11. Use the link that works for you. Both go to the same place.
  12. What happens when you try logging in from this url? http://heliohost.org:2082/frontend/x3/index.phpcp
  13. Sometimes djbob is a day or two in checking the forum. PM me your registration info: Email Username Domain name and I'll try signing you up using the administation registration.
  14. This support request is being escalated to our root admin.
  15. Your site is up. Refresh your browser's cache if your still not seeing your "Hi" page.
  16. Ok it seems there's a problem when you register. I'm not seeing your domain anymore in the database so I'm escalating this to djbob.
  17. This should do what you want. Create a .htaccess file in your beta folder and add the code below: RewriteEngine On RewriteRule ^/?$ /index.php This will redirect all requests like this: mysite.com/beta to your index.php file while allowing: beta.mysite.com to see the directory index and still allowing file access by name like this: mysite.com/beta/myfile.html EDIT: Nevermind that didn't qet it. I just tried that on one of my subdomains. Go ask your question in this forum under the subforum Apache Configuration. I'm sure somebody there can help you: http://www.codingforums.com/ Let me know what they tell you.
  18. Byron

    Domain Name

    I'll have to change it for you. I'll do it a little later when the server load isn't so high. It will take at least 24 hours to resolve. Okay your domain is now: ivorycfields.heliohost.org Give it 24 hours to resolve.
  19. I just checked and your registrstion went through. Give it 24 to 48 hours to come out of queue.
  20. If I try sending an email to gmail from my account using either cgi sendmail or php mail function I get a bounce back with this message: Unrouteable address. What's up with that?
  21. Have you tried to register today?
  22. Thought I'd escalate this to you djbob to see if you had anything in the works to get us off of gmails spam list.
  23. ASP.NET has recently been disabled do to downtime. Hopefully it will be up around the 1st of the year.
  24. That account doesn't exist. If you waited over 30 days after you created that account without logging into your cpanel, it got deleted. Register it again.
  25. I've PM'd you your new password.
×
×
  • Create New...