RE: CPU 100% when one CFM file is accessed

2001-01-05 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dian, There won't be a patch for that any time soon. "Client" is a reserved word in ColdFusion, meaning ColdFusion doesn't allow you to use that word as a variable. Check here for more info: Reserved words in ColdFusion

RE: CPU 100% when one CFM file is accessed

2001-01-05 Thread Chad Gray
The code doesn't matter. I forgot to mention that if i access this template from one page it works. If i access the page from another page it does not work. I am passing URL variables but they are the same. I gave up trying to trouble shoot it. I upgrade to service pack 2 and have not

RE: CPU 100% when one CFM file is accessed

2001-01-05 Thread Brendan Avery
client is a variable scope. you definitely don't want to use reserved words for query names. other bad choices would be: session variables request application attributes among others... At 10:22 AM 1/5/2001 +0700, you wrote: Do you have a query with name="client" ? I also got this problems

RE: CPU 100% when one CFM file is accessed

2001-01-05 Thread Jon Bell
1 for web 1 for data (SQL Server 2000) 1 for heavy lifting processes. All similar specs. JB -Original Message- From: Brendan Avery [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 2:19 PM To: CF-Talk Subject: RE: CPU 100% when one CFM file is accessed

Re: CPU 100% when one CFM file is accessed

2001-01-04 Thread Kevin Miller
I've seen this happen to a CFM where the file is actually corrupt. I could open, read, even edit the file just fine, but whenever I called it via the browser, the processor would go haywire. I copied the contents of the file to a new, blank file, then saved it and it worked fine from then on

RE: CPU 100% when one CFM file is accessed

2001-01-04 Thread Hoffman, Joe (CIT)
Can you show us some code? -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 04, 2001 3:32 PM To: CF-Talk Subject: CPU 100% when one CFM file is accessed This is very strange. I have one CFM template that causes the NT box to peg the CPU to 100%

RE: CPU 100% when one CFM file is accessed

2001-01-04 Thread Kevin Langevin
Is the CFOUTPUT inside of a CFLOOP? If so, check your terminating condition to be sure that it actually gets triggered. If the condition can't be met, the loop is infinite and pegs the server. Lots of fun on a shared server environment, too... :( CFUG-SFL Manager -Kev /CFUG-SFL Manager

RE: CPU 100% when one CFM file is accessed

2001-01-04 Thread Dian Oktosoma
Do you have a query with name="client" ? I also got this problems when I used that query name. Is there any patch for this ? -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 3:32 AM To: CF-Talk Subject: CPU 100% when one CFM file is accessed