Results 1 to 8 of 8

Thread: Problems with Contact Page
      
   

  1. #1
    Davethorn is offline Sergeant First Class
    Join Date
    Sep 2007
    Posts
    53

    Default Problems with Contact Page

    Could someone please look at my Contact Page and let me know why it doesn't work. http://www.webworldaffiliates.com/ If you need more information, let me know what is needed. Regards, David

  2. #2
    aussiebaz is offline First Lieutenant
    Join Date
    Jan 2007
    Location
    Newcastle , Australia
    Posts
    178

    Default Re: Problems with Contact Page

    You need to go to:
    http://www.vodahost.com/tut_bluevoda.htm

    and review totally
    Forms (1)
    and
    Forms(2)

    this will guide you on how to set up a form

    Looking at your page it seems you have placed
    the form details on your page but have not actually set it up

    take a look at the tutorials above

    aussiebaz

  3. #3
    Davethorn is offline Sergeant First Class
    Join Date
    Sep 2007
    Posts
    53

    Default Re: Problems with Contact Page

    I read and listened to the tutorials at least a dozen times and can't see where i failed to follow the instructions. Here is the page URL, maybe that will help setting me straight.
    http://www.machiningbythebook.com/webworldaffiliates/Contact%20Us.html

    I've already spent two full days trying to get it done but to no avail. Thanks for any help you can offer. regards, David

  4. #4
    Davethorn is offline Sergeant First Class
    Join Date
    Sep 2007
    Posts
    53

    Default Re: Problems with Contact Page

    Here's the message I get when I press Submit Button:

    The requested URL /action.php was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.




    David

  5. #5
    aussiebaz is offline First Lieutenant
    Join Date
    Jan 2007
    Location
    Newcastle , Australia
    Posts
    178

    Default Re: Problems with Contact Page

    Did you design your "thankyou" page and insert the coding into it.

    This is the coding that is required, you need to edit the black text

    <?PHP
    $mailto = "your email";
    $email = $HTTP_POST_VARS['email'];
    if ($email == "") {
    $email = $mailto;
    }
    $mailsubj = "Form Application";
    $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);
    ?>
    =====================

    "Form Application : change this to whatever you want
    the subject to be in your notification email

    Your thankyou page must be a PHP not html
    then save page as action

    to do this:
    while your "thank you" page is open in your
    voda builder right click anywhere on page and
    select page properties , then make sure that
    "file extension" displays "php", then click OK

    now save page as action then publish

    Your form should work ok now

  6. #6
    Davethorn is offline Sergeant First Class
    Join Date
    Sep 2007
    Posts
    53

    Default Re: Problems with Contact Page

    Done this, now the error message I get is :
    Parse error: syntax error, unexpected '<' in /home/ftmqzxz/public_html/webworldaffiliates/action.php on line 41

    Any more suggestions? David

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

    Default Re: Problems with Contact Page

    Yo have probably forgotten the closing php tag ?> in the code you pasted in your action 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!


  8. #8
    Davethorn is offline Sergeant First Class
    Join Date
    Sep 2007
    Posts
    53

    Default Re: Problems with Contact Page

    Thanks. Everything got staraightened out. Regards, David

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