Results 1 to 10 of 10

Thread: form assistance required
      
   

  1. #1
    jaykay is offline First Sergeant
    Join Date
    Mar 2007
    Location
    Cyprus
    Posts
    83

    Default form assistance required

    Sorry about this, but something has gone wrong with my form. The submit button works in as much as the thank you page comes up but I don't receive and email.

    http://www.pxmcyprus.com/contact_us.html
    Thanks in advance
    Julie

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

    Default Re: Something's gone wrong with my form

    I tested your form, and got the thank you page. Did it work before ? were you receiving the emails ?
    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!


  3. #3
    jaykay is offline First Sergeant
    Join Date
    Mar 2007
    Location
    Cyprus
    Posts
    83

    Default Re: Something's gone wrong with my form

    Yes and Yes

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

    Default Re: form assistance required

    I can only suggest that you post here the code of your thankyou page so we can have a look.
    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!


  5. #5
    jaykay is offline First Sergeant
    Join Date
    Mar 2007
    Location
    Cyprus
    Posts
    83

    Default Re: form assistance required

    Thanks Naval design, here's the code.
    I did put a new comments box on the contact us page, so I'm guessing that I have altered something by mistake.

    Much appreciate your help.

    <?PHP
    $mailto = "pxmcyprus@cytanet.com";
    $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);
    ?>

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

    Default Re: form assistance required

    Both your form and your script look ok, and the thank you page comes up fine. Unless you have made some mistake in pasting the script in the thank you page, the only other possible explanation could be your ISP blocking the emails or your email address being wrong.
    Please poste the code of the ENTIRE thank you page
    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!


  7. #7
    jaykay is offline First Sergeant
    Join Date
    Mar 2007
    Location
    Cyprus
    Posts
    83

    Default Re: form assistance required

    Hi Navaldesign
    I now appear to be receiving emails !!! However this is one of them, is this how it should be?
    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:

    pxmcyprus@cytanet.com.cy
    (generated from hdihgel@pxmcyprus.com)
    SMTP error from remote mail server after RCPT TO:<pxmcyprus@cytanet.com.cy>:
    host mail-relay.cytanet.com.cy [195.14.130.157]:
    450 4.1.8 <hdihgel@voda15.vodahost.com>: Sender address rejected:
    Domain not found: retry timeout exceeded

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

    Return-path: <hdihgel@voda15.vodahost.com>
    Received: from hdihgel by voda15.vodahost.com with local (Exim 4.63)
    (envelope-from <hdihgel@voda15.vodahost.com>)
    id 1HsdlM-0001w4-Jj
    for hdihgel@pxmcyprus.com; Mon, 28 May 2007 06:51:48 -0500
    To: hdihgel@pxmcyprus.com
    Subject: Contact Form Submission
    From: kemp.cyprus******.com
    Message-Id: <E1HsdlM-0001w4-Jj@voda15.vodahost.com>
    Date: Mon, 28 May 2007 06:51:48 -0500


    Values submitted from web site form :
    name : It\'s only me
    email : kemp.cyprus******.com
    tel :
    Comments : Can you phone me please?


    __________ NOD32 2293 (20070527) Information __________

    This message was checked by NOD32 antivirus system.
    http://www.eset.com


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

    Default Re: form assistance required

    No, this is not what you should have received. This is the error message from the server because the mail has failed. The script works, but the the mail has been rejected.

    Try changing the email address to something else.


    Please note that you have pxmcyprus@cytanet.com in your script and then the error message reports pxmcyprus@cytanet.com.cy . Which one is correct ?
    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!


  9. #9
    jaykay is offline First Sergeant
    Join Date
    Mar 2007
    Location
    Cyprus
    Posts
    83

    Default Re: form assistance required

    Hi Navaldesign
    I'm afraid I'm completely lost now. When I first signed up I already had an email address ready (pxmcyprus@cytanet.com.cy) Then bluevoda gave me (under account email address) hdihgel@pxmcyprus.com In CPanel I tried to forward any mail to the email I already had set up.
    So, although the sumbit button and thank you page are working, the emails I get always have the error message as above #7
    Also, on this page http://www.pxmcyprus.com/Plans.html my 'click here to view prices' doesn't work and I can't, for the life of me work out why.
    Any help appreciated, although please feel free to direct me to anywhere or anyone that I should be asking.
    Thanks again.
    Julie

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

    Default Re: form assistance required

    Your View Prices doesn't work because the link URL is wrong. You have placed in the URL field "C:\Documents and Settings\Julia\My Documents\BlueVoda\Prices.html" instead of http://www.pxmcyprus.com/Prices.html

    probably because you have clicked on the "Browse for a file". Edit it and it will work.

    About the form: do not confuse the redirection that you tried to setup in your CP with the form script. These are tow entirely different issues.

    In the script, use your old, proven email address and see what is going on. If the script sends, but you don't receive the mail (you only get the error message) then it is either a typing mistake, or your ISP (cytanet.com.cy) is blocking the mail for some reason. You must first find out what your problem is in order to solve this.
    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!


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