|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
My hosting account utilizes a shared secure server. Forms that do not reference this server work fine, and the test that the host did to verify that the secure server was working performs fine.
However my form page, which has the same code as the test page from the host, does not work properly. When I changed the test file from the host to a php file it still worked, so I'm pretty sure it has nothing to do with the fact that my form is a php page. Here are the links: Test form which works: https://id283.securedata.net/nation...hostwaytest.php Test form which does not work: https://id283.securedata.net/nationaltasc/mapp.php Code from test page that works: Code:
<form method="post" name="hostwaytest" action="https://id283.securedata.net/cgi-nationaltasc/FormMail.pl"> <table width=80% > <tr> <td> <input type="text" name="email" value="YourEmail" > Your Email address? </td> </tr> <tr> <td> <input type="text" name="phone" value="YourPhone" > Your Phone number? </td> </tr> <input type="hidden" name="redirect" value="http://www.nationaltasc.org/thanks.php" > </table> <input type="submit" value="Submit"> <input type="reset" value="Reset"> </form> Code from form that doesn't work: Code:
<form METHOD="POST" ACTION="https://id283.securedata.net/cgi-nationaltasc/FormMail.pl"><input name="recipient" type="hidden" value="myemail@noyb.com"><input type="hidden" name="redirect" value="http://www.nationaltasc.org/thanks.php" > <P><FONT SIZE="-1"><B>TASC Agency/Program</B><BR> <INPUT TYPE="RADIO" NAME="TASC_Agency" CHECKED="CHECKED">One site $500 <BR><INPUT TYPE="RADIO" NAME="TASC_Agency" Value="2-5 sites $650">2-5 sites $650 <BR><INPUT TYPE="RADIO" NAME="TASC_Agency" Value="6-50 sites $750">6-50 sites $750 <BR><INPUT TYPE="RADIO" NAME="TASC_Agency" Value="51-100 sites $1000">51-100 sites $1000 <BR><INPUT TYPE="RADIO" NAME="TASC_Agency" Value="Individual Agency/Program of a Member State Association $375">Individual Agency/Program of a Member State Association $375<BR><B>Individual Member</B><BR> <INPUT TYPE="RADIO" NAME="Individual Member" Value="Affiliated $50">Affiliated $50 <INPUT TYPE="RADIO" NAME="Individual Member" Value="Non-Affiliated $100">Non-Affiliated $100<BR><B>Organizational Member</B><BR> <INPUT TYPE="RADIO" NAME="Organizational_Member" VALUE="Corporate $5,000">Corporate $5,000 <INPUT TYPE="RADIO" NAME="Organizational_Member" VALUE="State Association $1,500">State Association $1,500 <INPUT TYPE="RADIO" NAME="Organizational_Member" VALUE="Patron $1,000">Patron $1,000</FONT></P></FORM> <FORM> <TABLE WIDTH="500" BGCOLOR="#FFFFff" CELLPADDING="2" CELLSPACING="2"> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" WIDTH="192"><FONT SIZE="-1">First Name:<BR> <INPUT TYPE="TEXT" ONBLUR="checkName(this)" NAME="fname" SIZE="15"></FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="224"><FONT SIZE="-1">Middle:<BR> <INPUT TYPE="TEXT" ONBLUR="checkName(this)" NAME="minitial" SIZE="4"></FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="202"><FONT SIZE="-1">Last Name:<BR> <INPUT TYPE="TEXT" ONBLUR="checkName(this)" NAME="lname" SIZE="15"></FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="5" WIDTH="636"><FONT SIZE="-1">Home Address: <INPUT TYPE="TEXT" ONBLUR="checkAddress(this)" NAME="homestaddr" SIZE="65"></FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" WIDTH="192"><FONT SIZE="-1">City: <INPUT TYPE="TEXT" NAME="homecity" SIZE="15"></FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="224"><FONT SIZE="-1"> <SELECT NAME="billstate"> <OPTION VALUE="none">Select State/Province </OPTION> <OPTION VALUE="N/A">Not Applicable</OPTION> <OPTION VALUE="select">-------------------------</OPTION> <OPTION VALUE="AL">Alabama</OPTION> </SELECT></FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="202"><FONT SIZE="-1">Zip: <INPUT TYPE="TEXT" ONBLUR="checkZIPCode(this)" NAME="hzip" SIZE="12"></FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" WIDTH="192"><FONT SIZE="-1">Home Phone: <INPUT TYPE="TEXT" ONBLUR="checkUSPhone(this)" NAME="hphone" SIZE="15"></FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="224"><FONT SIZE="-1"> </FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="202"><FONT SIZE="-1"> </FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="5" WIDTH="636"><FONT SIZE="-1">Agency: <INPUT TYPE="TEXT" NAME="agency" SIZE="80"></FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="5" WIDTH="636"><FONT SIZE="-1">Title: <INPUT TYPE="TEXT" NAME="agencytitle" SIZE="80"></FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="5" WIDTH="636"><FONT SIZE="-1">Agency Address: <INPUT TYPE="TEXT" ONBLUR="checkAddress(this)" NAME="agencystaddr" SIZE="65"></FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" WIDTH="192"><FONT SIZE="-1">City: <INPUT TYPE="TEXT" NAME="officecity" SIZE="15"></FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="224"><FONT SIZE="-1"> <SELECT NAME="billstatebiz"> <OPTION VALUE="none">Select State/Province </OPTION> <OPTION VALUE="N/A">Not Applicable</OPTION> <OPTION VALUE="select">-------------------------</OPTION> <OPTION VALUE="AL">Alabama</OPTION> </SELECT></FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="202"><FONT SIZE="-1">Zip: <INPUT TYPE="TEXT" ONBLUR="checkZIPCode(this)" NAME="azip" SIZE="12"></FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" WIDTH="192"><FONT SIZE="-1">Office Phone: <INPUT TYPE="TEXT" ONBLUR="checkUSPhone(this)" NAME="aphone" SIZE="15"></FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="224"><FONT SIZE="-1">Fax:<BR> <INPUT TYPE="TEXT" ONBLUR="checkUSPhone(this)" NAME="afax" SIZE="15"></FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="202"><FONT SIZE="-1"> </FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" WIDTH="192"><FONT SIZE="-1">Email: <INPUT TYPE="TEXT" ONBLUR="checkEmail(this)" NAME="email" SIZE="25"></FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="224"><FONT SIZE="-1">URL: <INPUT TYPE="TEXT" ONBLUR="checkURL(this)" NAME="url" SIZE="25"></FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="202"><FONT SIZE="-1"> </FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="5" WIDTH="636"><FONT SIZE="-1"><B>Membership Survey (check all that apply to your program)</B></FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" WIDTH="192"><FONT SIZE="-1"><INPUT TYPE="CHECKBOX" NAME="CheckBox2" value="tasc"> TASC</FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="224"><FONT SIZE="-1"><INPUT TYPE="CHECKBOX" NAME="CheckBox6" value="court"> Court</FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="202"><FONT SIZE="-1"><INPUT TYPE="CHECKBOX" NAME="CheckBox10" value="diversion"> Diversion</FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" WIDTH="192"><FONT SIZE="-1"><INPUT TYPE="CHECKBOX" NAME="CheckBox3" value="juvenile"> Juvenile</FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="224"><FONT SIZE="-1"><INPUT TYPE="CHECKBOX" NAME="CheckBox7" value="jail"> Jail</FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="202"><FONT SIZE="-1"><INPUT TYPE="CHECKBOX" NAME="CheckBox11" value="Day Reporting Center"> Day Reporting Center</FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" WIDTH="192"><FONT SIZE="-1"><INPUT TYPE="CHECKBOX" NAME="CheckBox4" value="adult"> Adult</FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="224"><FONT SIZE="-1"><INPUT TYPE="CHECKBOX" NAME="CheckBox8" value="Probation/Parole"> Probation/Parole</FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="202"><FONT SIZE="-1"><INPUT TYPE="CHECKBOX" NAME="CheckBox12" value="other"> Other <INPUT TYPE="TEXT" NAME="surveyother" SIZE="15" MAXLENGTH="15"></FONT></TD> </TR> <TR VALIGN="TOP"> <TD VALIGN="TOP" ALIGN="LEFT" WIDTH="192"><FONT SIZE="-1"><INPUT TYPE="CHECKBOX" NAME="CheckBox5" value="Reentry TASC Program"> Reentry TASC Program</FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="224"><FONT SIZE="-1"><INPUT TYPE="CHECKBOX" NAME="CheckBox9" value="State Alcohol/Drug Agency"> State Alcohol/Drug Agency</FONT></TD> <TD VALIGN="TOP" ALIGN="LEFT" COLSPAN="2" WIDTH="202"><FONT SIZE="-1"> </FONT></TD> </TR> </TABLE> <P><input name="submit" type="submit" value="Submit"><INPUT TYPE="RESET" NAME="Reset1"></P></FORM> Does anyone have any idea, as the technicians at the hosting company don't have a clue it seems and aren't very helpful. Thanks. |
|
#2
|
||||
|
||||
|
So what doesn't work?
__________________
Cheers, Jamie # skiFFie | Home of the 'accessibility module' for Drupal # Jamie Burns [me] Accessibility Module [drupal] # guidelines | search | wap resources | not getting help | fold to cure # Any form of employment is strictly prohibited ...... __________________ Let the might of your compassion arise to bring a quick end to the flowing stream of the blood and tears ..... Please hear my anguished words of truth. __________________ |
![]() |
| Viewing: Dev Shed Forums > Web Design > Web Design Help > Form submit not working with secure server |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|