YetAnotherForum
Welcome Guest Search | Active Topics | Log In | Register

process_registration.cfm "File not found" error. Options
raym444
#1 Posted : Friday, April 29, 2005 3:27:07 PM
Rank: Starting Member

Groups: Registered

Joined: 4/29/2005
Posts: 2
Location: ,
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.
Sponsor  
 
raym444
#2 Posted : Friday, April 29, 2005 3:31:46 PM
Rank: Starting Member

Groups: Registered

Joined: 4/29/2005
Posts: 2
Location: ,
OOPS, slight mistake. I missed some of the beginning code on the process_registration.cfm page. here is the complete code:

&lt;cfquery name="registrations" datasource="spiritweekend_db"&gt;
SELECT * FROM tblRegistrations
&lt;/cfquery&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
&lt;title&gt;Thank you for your Submission&lt;/title&gt;
&lt;style type="text/css"&gt;
&lt;!--
.style3 {color: #0000FF; font-weight: bold; font-size: 18px; }
.style10 {
font-size: 18px;
font-weight: bold;
}
.style12 {color: #660099}
.style13 {font-size: 20px}
--&gt;
&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;cfquery datasource="spiritweekend_db"&gt;
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#')
&lt;/cfquery&gt;
&lt;p align="center" class="style3 style13"&gt;&lt;u&gt;&lt;span class="style12"&gt;Spirit Weekend - 2005 PayPal Donation Page &lt;/span&gt;&lt;/u&gt;&lt;br&gt;
&lt;/p&gt;
&lt;table width="740" border="0" align="center"&gt;
&lt;tr&gt;
&lt;td width="734"&gt;&lt;div align="center"&gt;
&lt;p class="style10"&gt;To continue, click on the &quot;DONATE&quot; button below. If you currently have a PayPal account,&lt;br&gt;
you will not have to re-enter any information, you will simply log-in to your account.&lt;br&gt;
If not, you will have to enter your Credit Card information. Or you can &lt;a href="registrationform.pdf"&gt;click
over&lt;br&gt;
&lt;/a&gt;to our printable registration form and register by mail.
&lt;/p&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p align="center" class="style3"&gt;&lt;img src="Images/swbanner.jpg" width="427" height="76" border="2" bordercolor="#660099"&gt;
&lt;form action="https://www.paypal.com/cgi-bin/webscr" method="post" enctype="application/x-www-form-urlencoded"&gt;&lt;div align="center"&gt;
&lt;table width="433" height="99" border="2" cellpadding="1" cellspacing="1" bordercolor="#660099"&gt;
&lt;tr&gt;
&lt;td width="299" height="21"&gt;&lt;div align="center"&gt;&lt;strong&gt;Spirit Weekend - 2005 Donation &lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;
&lt;td width="128" rowspan="2" align="center" valign="middle"&gt;&lt;div align="center"&gt;&lt;/div&gt;
&lt;div align="center"&gt;
&lt;input type="image" name="submit" src="images/paypalbutton.gif" border="0" alt="Make payments with PayPal, it's fast, free, and secure!"&gt;
&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td height="74" align="left" valign="top"&gt;&lt;div align="center"&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;br&gt;
Saturday &amp; Sunday, October 15-16, 2005&lt;br&gt;
&lt;/EM&gt;&lt;/STRONG&gt;&lt;STRONG&gt;&lt;EM&gt;Surprise Lake Camp, Cold Spring, NY&lt;/EM&gt;&lt;/STRONG&gt;&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;input type="hidden" name="cmd" value="_xclick"&gt;
&lt;input type="hidden" name="bn" value="webassist.dreamweaver.4_0_1"&gt;
&lt;input type="hidden" name="business" value="raym444@yahoo.com"&gt;
&lt;input type="hidden" name="item_name" value="Spirit Weekend - 2005 Donation"&gt;
&lt;input type="hidden" name="item_number" value="SW2005DON"&gt;
&lt;input type="hidden" name="amount" value="95."&gt;
&lt;input type="hidden" name="currency_code" value="USD"&gt;
&lt;input type="hidden" name="return" value="http://oldpro.gotdns.com:8080/spiritweekend/thankyou.htm"&gt;
&lt;input type="hidden" name="cancel_return" value="http://oldpro.gotdns.com:8080/spiritweekend/cancel.htm"&gt;
&lt;input type="hidden" name="undefined_quantity" value="0"&gt;
&lt;input type="hidden" name="receiver_email" value="raym444@yahoo.com"&gt;
&lt;input type="hidden" name="mrb" value="R-3WH47588B4505740X"&gt;
&lt;input type="hidden" name="pal" value="ANNSXSLJLYR2A"&gt;
&lt;input type="hidden" name="no_shipping" value="0"&gt;
&lt;input type="hidden" name="no_note" value="0"&gt;
&lt;/div&gt;
&lt;/form&gt;
&lt;div align="center"&gt;
&lt;/p&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

YAFVision Theme by Jaben Cargman (Tiny Gecko)
Powered by YAF 1.9.3 | YAF © 2003-2009, Yet Another Forum.NET
This page was generated in 0.452 seconds.