Re: Cold Fusion Crashes

2005-06-15 Thread Thomas Chiverton
On Tuesday 14 June 2005 23:59, Carl O wrote: ATT CSM6.0; H010818), An error occurred while evaluating the expression: #HTTP_REFERER# Error near line 293, column ITYM cgi.HTTP_REFERER I'd wrap the relevant code in an existence check. -- Tom Chiverton Advanced ColdFusion Programmer

RE: Cold Fusion Crashes

2005-06-15 Thread Mark A Kruger
. http://mkruger.cfwebtools.com/index.cfm?mode=aliasalias=cfmailbug -Original Message- From: Carl O [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 14, 2005 6:00 PM To: CF-Talk Subject: Cold Fusion Crashes Hi I am kind of new to cold fusion (been dealing with it for about 6 months

RE: Cold Fusion Crashes

2005-06-15 Thread Dave Watts
An error occurred while evaluating the expression: #HTTP_REFERER# Error near line 293, column ITYM cgi.HTTP_REFERER I'd wrap the relevant code in an existence check. It's worth pointing out that if you explicitly use the CGI scope prefix, you needn't test for the existence of the

Cold Fusion Crashes

2005-06-14 Thread Carl O
Hi I am kind of new to cold fusion (been dealing with it for about 6 months) and not a programmer. This is a horrible question im about to ask, but can you give me the basic steps to troubleshoot a CF problem? Our server is crashing once every few days. Its cold fusion 5. The error logs dont

Re: Cold Fusion Crashes

2005-06-14 Thread Matt Robertson
I hate to say it but most errors are code-related. One thing to do is to log long-running templates. Set the warning indicator down to lets say 5 seconds and see what happens then. Anything taking 5000 ms+ to run should be examined closely. Terminate long-running requests. Once you figure

RE: Cold Fusion Crashes

2005-06-14 Thread Matthew Walker
One tip is to make sure all debugging is turned off. Restricting debugging to certain IP addresses is not enough. -Original Message- From: Carl O [mailto:[EMAIL PROTECTED] Sent: Wednesday, 15 June 2005 11:00 a.m. To: CF-Talk Subject: Cold Fusion Crashes Hi I am kind of new to cold

Re: Cold Fusion Crashes

2005-06-14 Thread Nathan Strutz
The easiest way to make a fairly busy site crash with CF5 is to use session and application (and a few others) variables without locking them. In CF5, you have to put cflock around all your shared scope variables, exclusive for writing, readonly for reading. Don't put it around database