Results 1 to 11 of 11

Thread: How do I fix my action page
      
   

  1. #1
    donprofit is offline Second Lieutenant
    Join Date
    Jun 2007
    Posts
    122

    Default How do I fix my action page

    I'm having a heck of a time finding out how to get my action page fixed. I had a thread going yesterday but it disappeared. Then I started a new thread awhile ago and it was never delivered. I won't write much now in case it happens again. My HTML may be messed up in my thankyou page. Was I supposed to copy only blue text or all of it. I now have 2 blue areas and the black doesn't look like the one on the tutorial.

    donprofit profitinforeclosures.com

  2. #2
    larazovich's Avatar
    larazovich is offline General
    Join Date
    Jul 2006
    Location
    near San Francisco, California
    Posts
    5,818

    Default Re: How do I fix my action page

    Quote Originally Posted by donprofit View Post
    I'm having a heck of a time finding out how to get my action page fixed. I had a thread going yesterday but it disappeared. Then I started a new thread awhile ago and it was never delivered. I won't write much now in case it happens again. My HTML may be messed up in my thankyou page. Was I supposed to copy only blue text or all of it. I now have 2 blue areas and the black doesn't look like the one on the tutorial.

    donprofit profitinforeclosures.com
    here is your thread
    http://www.vodahost.com/vodatalk/for...page-form.html
    Liz
    www.sebastopolparty.com
    www.raynordescendents.com

    Ring the bells that still can ring

  3. #3
    LadyEye's Avatar
    LadyEye is offline General & Forum Moderator
    Join Date
    Jun 2006
    Location
    Canada
    Posts
    10,548

    Default Re: How do I fix my action page

    Just in future so that you might find it easier to find your posts ...

    click on your name
    you will then be able to find your recent posts by doing so ...

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  4. #4
    donprofit is offline Second Lieutenant
    Join Date
    Jun 2007
    Posts
    122

    Default Re: How do I fix my action page

    Sorry about that I messed it up, but I think I've got the posts figured out. I still need some help with my email problem.

  5. #5
    legaleagle is offline Corporal
    Join Date
    May 2007
    Location
    Michigan
    Posts
    15

    Default Re: How do I fix my action page

    I am having the same problem my contact page works or seems to work but the email that it is supposed to produce does not end up in my inbox where I want it to go. I checked my webmail out and found four emails that were all sent from my contact page and they were undeliverable. I have copied/pasted one below for reference. Can somebody tell me please what needs to be changed or fixed. Thanks.





    This message was created automatically by mail delivery software.

    A message that you sent could not be delivered to one or more of its
    recipients. This is a permanent error. The following address(es) failed:

    stephen.schofield@sbcglobal.net
    SMTP error from remote mail server after MAIL FROM:<rsjxjqr@voda16.voda16.com> SIZE=1600:
    host sbcmx3.prodigy.net [207.115.21.22]: 553 5.1.8 <rsjxjqr@voda16.voda16.com>... Domain of sender address rsjxjqr@voda16.voda16.com does not exist

    ------ This is a copy of the message, including all the headers. ------

    Return-path: <rsjxjqr@voda16.voda16.com>
    Received: from rsjxjqr by voda16.voda16.com with local (Exim 4.66)
    (envelope-from <rsjxjqr@voda16.voda16.com>)
    id 1I15yl-0005fk-6l
    for stephen.schofield@sbcglobal.net; Wed, 20 Jun 2007 14:36:35 -0500
    To: stephen.schofield@sbcglobal.net
    Subject: Contact Form Submission
    From: steveschofield******.com
    Message-Id: <E1I15yl-0005fk-6l@voda16.voda16.com>
    Date: Wed, 20 Jun 2007 14:36:35 -0500


    Values submitted from web site form :
    Name : Steve Schofield
    email : steveschofield******.com
    Submit : Submit
    TextArea1 : Testing 123 God I hope this thing works.

  6. #6
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: How do I fix my action page

    Steve-

    Please post the URL of the contact page and then copy and paste in this thread your php script that you are using to process the form.

    Andy
    PHP- is a blast!

  7. #7
    legaleagle is offline Corporal
    Join Date
    May 2007
    Location
    Michigan
    Posts
    15

    Default Re: How do I fix my action page

    Ok here is the URL for the contact page:

    http://www.mijuvenilejustice.org/contact.html

    and here is the PHP script:

    <?PHP
    $mailto = "stephen.schofield@sbcglobal.net";
    $email = $HTTP_POST_VARS[email];
    if ($email == "") {
    $email = $mailto;
    }
    $mailsubj = "Contact Form Submission";
    $mailhead = "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "Values submitted from web site form :\n";
    while (list ($key, $val) = each ($HTTP_POST_VARS))
    {
    if ($key!="submit")
    {
    $mailbody .= "$key : $val\n";
    }
    }
    mail($mailto, $mailsubj, $mailbody, $mailhead);
    ?>

    I watched the tutorial on this stuff and I thought I did what they said but obviously something is wrong. I just can't figure out what. Thanks for the help in advance.

    Steve


  8. #8
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: How do I fix my action page

    Steve-
    First- in this line:
    $email = $HTTP_POST_VARS[email];

    Put ' ' on either side of email inside the brackets like so:
    $email = $HTTP_POST_VARS['email'];

    Then- give it a try.

    If that fails- post back.

    Andy
    PHP- is a blast!

  9. #9
    legaleagle is offline Corporal
    Join Date
    May 2007
    Location
    Michigan
    Posts
    15

    Default Re: How do I fix my action page

    Quote Originally Posted by Andy128 View Post
    Steve-
    First- in this line:
    $email = $HTTP_POST_VARS[email];

    Put ' ' on either side of email inside the brackets like so:
    $email = $HTTP_POST_VARS['email'];

    Then- give it a try.

    If that fails- post back.

    Andy
    Thanks Andy. I just tried that. And then tested the contact page again. So far nothing to my inbox I haven't gone to the webmail for the page to see if there is a bounced mail yet. I did notice that when I check the source for the actual page up on the internet I don't see the php script?

    In the meantime I will go see what is in the webmail and wait to hear back. Thanks.

    Steve

  10. #10
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: How do I fix my action page

    Please replace your email address with one that resides in your VH account. Probably the mail is blocked by your ISP (at least this is what the bouncing message shows). The script works and sends the mail, but it seems like your email address refuses the mail
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  11. #11
    legaleagle is offline Corporal
    Join Date
    May 2007
    Location
    Michigan
    Posts
    15

    Default Re: How do I fix my action page

    Quote Originally Posted by navaldesign View Post
    Please replace your email address with one that resides in your VH account. Probably the mail is blocked by your ISP (at least this is what the bouncing message shows). The script works and sends the mail, but it seems like your email address refuses the mail
    well it seems to not like voda16........ but the domain of my website is actually mijuvenilejustice.org shouldn't that be the domain it sends to my other email from? I guess in the alternative I could simply have contacts go to the mijuvenilejustice.org and forward auto to my other email. Thanks for the help. I'll go tinker with things some more.

    Steve

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49