Don't leave stuff lying around

2002-05-22 Thread Richard Meredith-Hardy
code, and in so doing invoked the stored procedure deletion / re-creation. Moral: Don't leave stuff lying around. -- Regards; Richard Meredith-Hardy - [EMAIL PROTECTED] Mob: + 44 7771 526513

RE: Don't leave stuff lying around

2002-05-22 Thread Webapper
://www.webapper.com Tel: 562.243.6255 Instant Messaging AIM: webappermb Webapper, Downey CA Office Webapper - Making the NET Work -Original Message- From: Richard Meredith-Hardy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 5:29 AM To: CF-Talk Subject: Don't leave stuff lying around

Re: Don't leave stuff lying around

2002-05-22 Thread Douglas Jordon
Office Webapper - Making the NET Work -Original Message- From: Richard Meredith-Hardy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 5:29 AM To: CF-Talk Subject: Don't leave stuff lying around This morning I got into work to discover 3000 error messages generated

RE: Don't leave stuff lying around

2002-05-22 Thread Philip Arnold - ASP
May 2002 13:29 To: CF-Talk Subject: Don't leave stuff lying around This morning I got into work to discover 3000 error messages generated since 4:30 yesterday afternoon with more pouring in by the minute. I had something of a panic attack as the site has been running with no errors

RE: Don't leave stuff lying around

2002-05-22 Thread Tony_Petruzzi
22, 2002 10:57 AM To: CF-Talk Subject: RE: Don't leave stuff lying around Another option to stop this happening is to have them have a form at the start - they won't do the work until the form has been submitted... Stops the search engines bumping into them or WebTrends re-running stuff Philip

RE: Don't leave stuff lying around

2002-05-22 Thread Cravens, Billy
, 2002 10:52 AM To: CF-Talk Subject: RE: Don't leave stuff lying around Personally I think this comes from not doing error checks in your code more than leaving stuff lying around. Don't get me wrong, I think that at least once month you should go through your production site and see if everything

RE: Don't leave stuff lying around

2002-05-22 Thread Tony_Petruzzi
Petruzzi Webmaster 954-321-4703 [EMAIL PROTECTED] http://www.sheriff.org -Original Message- From: Cravens, Billy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 12:11 PM To: CF-Talk Subject: RE: Don't leave stuff lying around 3) finally make sure that you don't have an empty

RE: Don't leave stuff lying around

2002-05-22 Thread Dave Watts
cfparam name=variable type=numeric will this automatically set the default value to 0 even though you aren't specifying it? should it be cfparam name=variable type=numeric default=0? If you omit the DEFAULT attribute, CFPARAM will throw an exception if the variable doesn't already exist.

RE: Don't leave stuff lying around

2002-05-22 Thread Cravens, Billy
I was actually thinking more of form variables, where the user can enter in spaces. --- Billy Cravens -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 11:21 AM To: CF-Talk Subject: RE: Don't leave stuff lying around don't get what