I've created a signup form (registration.cfm)in ColdFusion that lets you register for an event. Once all of the data is entered and the user clicks the "Continue" button, the process_registration.cfm form is supposed to open and enter the data into a database. That was all working fine until I added the PayPal "Buy Now" button to the process_registration.cfm page. Now the site doesn't even see the process_registration page. When a user clicks the "Continue" button, they get the error "File not found". Does anyone have any suggestions as to what may have happened. Am I unable to put a "Buy Now" button on a dynamic page? The registration form can be viewed at:
http://www.spiritweekend.org/register.cfm I'm pasting in the process_registration.cfm page here since there is no way to get to it online anymore, even directly. Here it is:
</head>
<body>
<cfquery datasource="spiritweekend_db">
INSERT INTO tblRegistrations(Name, Address, City, State, ZipCode, HomePhone, WorkPhone, CellPhone, Email, EmergencyContact, Relation, ContactPhone, WeekendDate, Sponsor, Team, Division, Occupation, Age, ShirtSize, PhysicalLimitations, FoodRequirements, Contribution)
VALUES ('#Name#', '#Address#', '#City#', '#State#', '#ZipCode#', '#HomePhone#', '#WorkPhone#', '#CellPhone#', '#Email#', '#EmergencyContact#', '#Relation#', '#ContactPhone#', '#WeekendDate#', '#Sponsor#', '#Team#', '#Division#', '#Occupation#', '#Age#', '#ShirtSize#', '#PhysicalLimitations#', '#FoodRequirements#', '#Contribution#')
</cfquery>
<p align="center" class="style3 style13"><u><span class="style12">Spirit Weekend - 2005 PayPal Donation Page </span></u><br>
</p>
<table width="740" border="0" align="center">
<tr>
<td width="734"><div align="center">
<p class="style10">To continue, click on the "DONATE" button below. If you currently have a PayPal account,<br>
you will not have to re-enter any information, you will simply log-in to your account.<br>
If not, you will have to enter your Credit Card information. Or you can <a href="registrationform.pdf">click
over<br>
</a>to our printable registration form and register by mail.
</p>
</div></td>
</tr>
</table>
<p align="center" class="style3"><img src="Images/swbanner.jpg" width="427" height="76" border="2" bordercolor="#660099">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" enctype="application/x-www-form-urlencoded"><div align="center">
<table width="433" height="99" border="2" cellpadding="1" cellspacing="1" bordercolor="#660099">
<tr>
<td width="299" height="21"><div align="center"><strong>Spirit Weekend - 2005 Donation </strong></div></td>
<td width="128" rowspan="2" align="center" valign="middle"><div align="center"></div>
<div align="center">
<input type="image" name="submit" src="images/paypalbutton.gif" border="0" alt="Make payments with PayPal, it's fast, free, and secure!">
</div></td>
</tr>
<tr>
<td height="74" align="left" valign="top"><div align="center"><STRONG><EM><br>
Saturday & Sunday, October 15-16, 2005<br>
</EM></STRONG><STRONG><EM>Surprise Lake Camp, Cold Spring, NY</EM></STRONG></div></td>
</tr>
</table>
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="bn" value="webassist.dreamweaver.4_0_1">
<input type="hidden" name="business" value="raym444@yahoo.com">
<input type="hidden" name="item_name" value="Spirit Weekend - 2005 Donation">
<input type="hidden" name="item_number" value="SW2005DON">
<input type="hidden" name="amount" value="95.">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="return" value="http://oldpro.gotdns.com:8080/spiritweekend/thankyou.htm">
<input type="hidden" name="cancel_return" value="http://oldpro.gotdns.com:8080/spiritweekend/cancel.htm">
<input type="hidden" name="undefined_quantity" value="0">
<input type="hidden" name="receiver_email" value="raym444@yahoo.com">
<input type="hidden" name="mrb" value="R-3WH47588B4505740X">
<input type="hidden" name="pal" value="ANNSXSLJLYR2A">
<input type="hidden" name="no_shipping" value="0">
<input type="hidden" name="no_note" value="0">
</div>
</form>
<div align="center">
</p>
</div>
</body>
</html>
I hope someone can help me on this.