Jump to content

Byron

Moderators
  • Posts

    9153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. Do you know anything at all about forms? What are the form fields that you want to be filled out?
  2. Are you able to see the instructions on the page I posted? And do you just have to use cgi mail? How about using a php contact form? I have one I can post to you that works just as well and you can change the html around to suit you. I can tell you how to use cgi mail but it's been awhile since I've used it and I would have to re-learn it myself.
  3. Sometimes it takes a little longer but I'm sure if you can open the cpanel via a proxy then everything is ok, just keep trying.
  4. You need to rename it back to what it was and read the instructions. It should redirect you to this page when you click onto the file. http://web.mit.edu/wwwdev/cgiemail/nopath.html What are you wanting to do with cgi mail? Are you wanting to make a contact form for your site?
  5. That's probably because signups are full for the day. You'll have to wait for signups to reset at 12:00 am PST. Somebody correct me if I'm wrong about the time.
  6. Another thing you need to do and that's login with lowercase, even if you signed up with uppercase letters.
  7. You'll need to wait for djbob to take a look.
  8. Go and set the nameservers at co.cc to heliohost's.
  9. That's because your domain name isn't pointing to heliohost yet. Once you set the nameservers to heliohost you will be able to login.
  10. There isn't any feature like that in cpanel. Just go to your cpanel file manager and click onto the directory names and delete each directory like that.
  11. First you need to go to co.cc and login and then point your domain to the heliohost nameservers which are: ns1.heliohost.org ns2.heliohost.org Then you need to wait about 24 hours for the changes to take effect before you can login here: http://wowla.co.cc:2082/
  12. I know for sure that yahoo isn't blocking regular emails. I get mine without any problems from heliohost. You can try this simple test from your site and see what happens. Just make a php page out of the code below and add the correct email addresses and click onto the page. <?php $to = "your_address@yahoo.com"; $subject = "Test Mail"; $message = "Hello world!"; $headers = "From: raingirl@raingirl82.heliohost.org"; mail($to, $subject, $message, $headers); echo "The email was sent"; ?>
  13. You should see a link named Fantastico De Luxe in your cPanel or use this: http://YOUR_DOMAIN.heliohost.org:2082/fron...stico/index.php
  14. This is your cPanel login. http://foxfamilyden.heliohost.org:2082/fro...d/x3/index.html
  15. This is ok, you should see your site in about 24 hours ater signup.
  16. Go to your cPanel and look for the "Parked Domains" option and enter this as your parked domain: ideathena.co.cc Then go to co.cc and login and change the nameservers to this: ns1.heliohost.org ns2.heliohost.org Then wait about 24 hours for the changes to take effect.
  17. See my previous post.
  18. If you went 30 days without logging into cpanel then you should have gotten an email warning you. See if you can renew here: http://www.heliohost.org/scripts/renew.php
  19. Do you have your own domain name?
  20. Did you try to renew your account here? http://www.heliohost.org/scripts/renew.php
  21. Byron

    ImageMagick

    You must be using cgi? I wonder why it isn't working with php? EDIT: I just tried it on my site with cgi and it worked fine., btw Tablecat if your interested in what you can do with php and the Imagick Class here are some really good examples that you won't find at php.net. http://byrondallas.heliohost.org/php/imagi...all-methods.php
  22. Byron

    SMTP issues

    Just copy the code below to your server and change it two places. 1) $to = "your_address@gmail.com"; Put the email address your sending to, that would be your google address. 2) $headers = "From: you@your_site.heliohost.org"; Put your server email address here. <?php $to = "your_address@gmail.com"; $subject = "Test Mail"; $message = "Hello world!"; $headers = "From: you@your_site.heliohost.org"; mail($to, $subject, $message, $headers); echo "The email was sent"; ?> After your finished just click onto the file and the email is sent.
×
×
  • Create New...