+ Reply to Thread
Results 1 to 5 of 5

Thread: Class reunion form has issues. HELP!!!

  1. #1
    Join Date
    Feb 2010
    Posts
    3

    Default Class reunion form has issues. HELP!!!

    I volunteered to put together a class reunion page that has some photos etc. I also did a form page using frontpage. I included the formmail script but this thing seems not to work. I get a messege that says the page cannot be found upon submit. I am using ixwebhosting which uses the tectite formmail program. I am not a programmer at all. I just want this one page to submit to the email and redirect to a thankspage. I will include the code if anyone can help me with this one I promise never to volunteer again!!
    I took the page down for now and just have a under construction page in its place.

    Here is the code for the page. Thanks in advance.


    <body bgcolor="#CC3300">
    <h1>Clintonville Trucker Class of 1980 Reunion Questionnaire</h1>
    <form method="post" action="http://www.1980truckers.com/formmail/formmail.php" name="questionaire">
    <input type="hidden" name="recipients" value="committee@1980truckers.com" />
    <input type="hidden" name="subject" value="Reunion Questionnaire"/>
    <input type="hidden" name="good_url" value="http//1980truckers.com/thankspage.htm" />
    <input type=hidden name="required" value="name">


    <div align="left">
    <table border="0" width="648" height="304">
    <tr>
    <td width="173" height="54">
    <font size="5">Your full name</font></td>
    <td width="649" height="54"><input type=text name="name" size="65">
    </td>
    </tr>
    <tr>
    <td width="173" height="54">
    <font size="5">Spouses name</font></td>
    <td width="649" height="54">
    <input type=text name="spousename" size="65">
    </td>
    </tr>
    <tr>
    <td width="173" height="54">
    <font size="5">Address</font></td>
    <td width="649" height="54"><input type="text" name="address" size="65"></td>
    </tr>
    <tr>
    <td width="173" height="54">
    <font size="5">City, State, Zip</font></td>
    <td width="649" height="54">
    <input type="text" name="citystatezip" size="65"></td>
    </tr>
    <tr>
    <td width="173" height="54">
    <font size="5">Your occupation</font></td>
    <td width="649" height="54"><input type="text" name="Occupation" size="65">
    </td>
    </tr>
    <tr>
    <td width="173" height="27">
    <font size="5">Employed by</font></td>
    <td width="649" height="27"><input type="text" name="employedby" size="65"></td>
    </tr>
    <tr>
    <td width="173" height="1"></td>
    <td width="649" height="1"></td>
    </tr>
    <tr>
    <td width="173" height="1"></td>
    <td width="649" height="1"></td>
    </tr>
    <tr>
    <td width="173" height="87"><font size="5">Children's Names/Ages</font></td>
    <td width="649" height="87">
    <p></p>
    <p></p>
    <p></p>
    <p></p>
    <p></p>
    <p></p>
    <p></p>
    <p></p>
    <p></p>
    <p><input type="text" name="child1" size="66"><input type="text" name="child2" size="66"><input type="text" name="child3" size="66"></td>
    </tr>
    </table>
    </div>
    <p><font size="5">&nbsp;Highlights of your life</font></p>
    <p><textarea rows="8" name="highlights" cols="64"></textarea></p>
    <p><font size="5">Name one thing you miss about High School </font>
    </p>
    <p><font size="4"><textarea rows="5" name="Imiss" cols="69"></textarea></font></p>
    <p><font size="5">Additional Contact Information</font></p>
    <p><font size="5">Phone </font><font size="4">
    <input type="text" name="phone" size="45">&nbsp; </font><font size="5">Publish
    in reunion book?&nbsp; Y<input type="checkbox" name="phonenumberinbookyes" value="ON"> N<input type="checkbox" name="phonepublishinbookno" value="ON"></font></p>
    <p><font size="5">Email <input type="text" name="email" size="45">&nbsp;&nbsp;
    Publish in reunion book?&nbsp; Y<input type="checkbox" name="emailpublishinbookYes" value="ON"> N<input type="checkbox" name="emailpublishinbookno" value="ON"></font></p>
    <p><font size="5">Number of guests attending dinner and entertainment</font><font size="4">
    <input type="text" name="dinnerandmusicguests" size="20"></font></p>
    <p><font size="5">Number of guests attending entertainment only</font><font size="4">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
    <input type="text" name="musiconlyguests" size="20"></font></p>
    <p><span style="font-size: 18.0pt; font-family: Times New Roman">Not Planning
    to Attend,&nbsp; but would like a reunion Book&nbsp;&nbsp;
    <input type="checkbox" name="Iwantabook" value="ON">&nbsp;&nbsp;</span><font size="2">&nbsp;
    (Please send a check for $5.00 made out to the Class of 1980 to cover printing
    and postage)</font></p>
    <p><font size="5"><span style="font-family: Times New Roman">Please check here
    if you are interested in helping with the 35<sup>th </sup> reunion</span></font><span style="font-size: 14.0pt; font-family: Times New Roman">&nbsp;
    <input type="checkbox" name="helpfor30threunion" value="ON"></span><span style="font-family: Times New Roman; font-size: 14pt">&nbsp;&nbsp; </span><span style="font-family: Times New Roman"><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font></span></p>
    <p>
    <input type="submit" value="Submit" name="B1">
    <input type="reset" value="Reset" name="B2">
    </p>
    </FORM>

  2. #2
    Join Date
    May 2008
    Posts
    1,281

    Default Re: Class reunion form has issues. HELP!!!

    Hi,

    I get a messege that says the page cannot be found upon submit.
    You're missing a "colon" in your good_url setting. You have:

    HTML Code:
    <input type="hidden" name="good_url" value="http//1980truckers.com/thankspage.htm" />
    It should be:
    HTML Code:
    <input type="hidden" name="good_url" value="http://1980truckers.com/thankspage.htm" />

  3. #3
    Join Date
    Feb 2010
    Posts
    3

    Default Re: Class reunion form has issues. HELP!!!

    I put the colon in and still get this messege

    <!DOCTYPEHTMLPUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    1. <html>
    2. <head>
    3. <linkrel="stylesheet" type="text/css" href="ErrorPageTemplate.css" >
    4. <metahttp-equiv="Content-Type" content="text/html; charset=UTF-8">
    5. <title>HTTP 500 Internal Server Error</title>
    6. <scriptsrc="errorPageStrings.js" language="javascript" type="text/javascript">
    7. </script>
    8. <scriptsrc="httpErrorPagesScripts.js" language="javascript" type="text/javascript">
    9. </script>
    10. </head>
    11. <bodyonLoad="javascript:expandCollapse('infoBlockID', true); initGoBack(); navCancelInit(); initMoreInfo('infoBlockID');">
    12. <tablewidth="730" cellpadding="0" cellspacing="0" border="0">
    13. <!-- Error title -->
    14. <tr>
    15. <tdid="infoIconAlign" width="60" align="left" valign="top" rowspan="2">
    16. <imgsrc="info_48.png" id="infoIcon" alt="Info icon">
    17. </td>
    18. <tdid="mainTitleAlign" valign="middle" align="left" width="*">
    19. <h1id="mainTitle">The website cannot display the page</h1>
    20. </td>
    21. </tr>
    22. <tr>
    23. <!-- This row is for HTTP status code, as well as the divider-->
    24. <tdid="http500Align" class="errorCodeAndDivider" align="right"><IDid="http500">&nbsp;HTTP 500</ID>
    25. <divclass="divider"></div>
    26. </td>
    27. </tr>
    28. <!-- Error Body -->
    29. <tr>
    30. <td>
    31. &nbsp;
    32. </td>
    33. <tdid="likelyCausesAlign" valign="top" align="left">
    34. <h3id="likelyCauses">Most likely causes:</h3>
    35. <ul>
    36. <liid="causeSiteMaintenance">The website is under maintenance.</li>
    37. <liid="causeSiteError">The website has a programming error.</li>
    38. </ul>
    39. </td>
    40. </tr>
    41. <!-- What you can do -->
    42. <tr>
    43. <td>
    44. &nbsp;
    45. </td>
    46. <tdid="whatToTryAlign" valign="top" align="left">
    47. <h2id="whatToTry">What you can try:</h2>
    48. </td>
    49. </tr>
    50. <!-- refresh page -->
    51. <tr>
    52. <td>
    53. &nbsp;
    54. </td>
    55. <tdid="refreshPageAlign" align="left" valign="middle">
    56. <h4>
    57. <table>
    58. <tr>
    59. <tdvalign="top">
    60. <imgsrc="bullet.png" border="0" alt="" class="actionIcon">
    61. </td>
    62. <tdvalign="top">
    63. <spanid="navCancelContainer"></span><noscriptid="refreshPage">Refresh the page.</noscript>
    64. </td>
    65. </tr>
    66. </table>
    67. </h4>
    68. </td>
    69. </tr>
    70. <!-- back to previous page -->
    71. <tr>
    72. <td >
    73. &nbsp;
    74. </td>
    75. <tdid="goBackAlign" align="left" valign="middle">
    76. <h4>
    77. <table>
    78. <tr>
    79. <tdvalign="top">
    80. <imgsrc="bullet.png" border="0" alt="" class="actionIcon">
    81. </td>
    82. <tdvalign="top">
    83. <spanid="goBackContainer"></span><noscriptid="goBack">Go back to the previous page.</noscript>
    84. </td>
    85. </tr>
    86. </table>
    87. </h4>
    88. </td>
    89. </tr>
    90. <!-- InfoBlock -->
    91. <tr>
    92. <tdid="infoBlockAlign" align="right" valign="top">
    93. &nbsp;
    94. </td>
    95. <tdid="moreInfoAlign" align="left" valign="center">
    96. <h4>
    97. <table>
    98. <tr>
    99. <tdvalign="top">
    100. <ahref="#" onclick="javascript:expandCollapse('infoBlockID', true); return false;"><imgsrc="down.png" id="infoBlockIDImage" border="0" class="actionIcon" alt="More information"></a>
    101. </td>
    102. <tdvalign="top">
    103. <spanid="moreInfoContainer"></span>
    104. <noscript><IDid="moreInformation">More information</ID></noscript>
    105. </td>
    106. </tr>
    107. </table>
    108. </h4>
    109. <divid="infoBlockID" class="infoBlock">
    110. <pid="errorExplanation">This error (HTTP 500 Internal Server Error) means that the website you are visiting had a server problem which prevented the webpage from displaying.</p>
    111. <pid="moreInfoSeeHelp">For more information about HTTP errors, see Help.</p>
    112. </div>
    113. </td>
    114. </tr>
    115. </table>
    116. </body>
    117. </html>

  4. #4
    Join Date
    May 2008
    Posts
    1,281

    Default Re: Class reunion form has issues. HELP!!!

    Please post a link to the actual form page.

  5. #5
    Join Date
    Feb 2010
    Posts
    3

    Default Re: Class reunion form has issues. HELP!!!

    FIXED.. THANKS GINGER FOR YOUR HELP. Never volunteer to take on a task like this again.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

     

Similar Threads

  1. good_url, bad_url issues
    By mcameron in forum Community Support
    Replies: 1
    Last Post: 04-Dec-2006, 10:08 PM
  2. Issues with formmail, specially with fmbadhandler
    By phpnewbie in forum Community Support
    Replies: 0
    Last Post: 22-Nov-2006, 05:13 PM
  3. Multiple Recipients Issues
    By demonangel in forum Features Questions
    Replies: 1
    Last Post: 09-Aug-2006, 11:48 PM
  4. FormMail Issues
    By kontesto in forum FormMail Subscription Support
    Replies: 2
    Last Post: 19-Oct-2004, 04:31 AM
  5. Thanks for the great script, but I am having issues...
    By darknightjedi in forum FormMail Subscription Support
    Replies: 12
    Last Post: 26-Aug-2004, 09:08 PM

Bookmarks

Posting Permissions

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