Re: Log reporting error - No actual error (LONG)

2002-09-21 Thread Scott Brady
Ok, here's the code from the two files. First, the form page (which someone is sent to after clicking Checkout on a non-secure page. This page is a secure page.): [and yes, I know there are some scoped variables which should be locked, but, again, this code isn't mine]

RE: Log reporting error - No actual error

2002-09-18 Thread Mosh Teitelbaum
Message- From: Scott Brady [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 8:50 PM To: CF-Talk Subject: Re: Log reporting error - No actual error If you try to CFOUTPUT FORM.FormFields, what does it give you? And, if it gives you a list as you would expect, try iterating

RE: Log reporting error - No actual error

2002-09-18 Thread Mosh Teitelbaum
/CFIF -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Scott Brady [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 17, 2002 3:12 PM To: CF-Talk Subject: RE: Log reporting error

Re: Log reporting error - No actual error

2002-09-18 Thread Scott Brady
If you try to CFOUTPUT FORM.FormFields, what does it give you? And, if it gives you a list as you would expect, try iterating over that list, evaluating each one as in: I displayed the list and the values for each item in the list. The list/values output as it should. And, it gave me an

Re: Log reporting error - No actual error

2002-09-18 Thread Scott Brady
I decided to look at the debugging info through CF (using MX's dockable debugging tree). For the tree item Exceptions it says None Present. But, the error still gets reported. --- Scott Brady http://www.scottbrady.net

RE: Log reporting error - No actual error

2002-09-17 Thread Mosh Teitelbaum
Do you have any code we could look at? -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Scott Brady [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 17, 2002 12:27 PM To: CF-Talk

RE: Log reporting error - No actual error

2002-09-17 Thread Scott Brady
Here's the basic code (with layout and such trimmed out): The form: form action=ordercredit.cfm method=POST onsubmit=return numCheck(this) table tr td width=80First Name*/td tdinput type=Text name=FirstName value= align=LEFT size=20 maxlength=25/td

RE: Log reporting error - No actual error

2002-09-17 Thread Dan Haley
]] Sent: Tuesday, September 17, 2002 10:23 AM To: CF-Talk Subject: RE: Log reporting error - No actual error Here's the basic code (with layout and such trimmed out): The form: form action=ordercredit.cfm method=POST onsubmit=return numCheck(this) table tr td width=80First

RE: Log reporting error - No actual error

2002-09-17 Thread Scott Brady
Turn off your error handling to see where the error is truly occurring ... I knew I forgot to mention something. Even turning off the error handling doesn't throw an error in the browser when you submit the form. If I don't put in cfoutput#FORM.firstname#/cfoutput (which I just used to

RE: Log reporting error - No actual error

2002-09-17 Thread Mosh Teitelbaum
- From: Scott Brady [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 17, 2002 1:23 PM To: CF-Talk Subject: RE: Log reporting error - No actual error Here's the basic code (with layout and such trimmed out): The form: form action=ordercredit.cfm method=POST onsubmit=return numCheck

RE: Log reporting error - No actual error

2002-09-17 Thread Scott Brady
I can give you the relevant parts, without posting all of the actual code: !--- replace hack attempts --- cfif isDefined(form.firstname) cfset form.firstname = replacenocase(form.firstname, cf, _HACK, all) cfset form.firstname = replacenocase(form.firstname, script, _HACK, all)