CF5 CFMAIL Problem

2004-10-23 Thread Paul Smith
My CFMAIL is causing a problem. Somehow there are thousands of messages in the spool folder and CF has gone to 100% CPU attempting to process them. Any suggestions on what caused this and how to fix it? best, paul PS I've already shut down CFMAIL but apparently this does not stop CF from

RE: CF5 CFMAIL Problem

2004-10-23 Thread Russ
Is it possible that you're out of space on that drive? CF will go crazy if it cannot move the file to the undeliverable folder. Or do you have any 0 byte files? Or do you have any other programs that might keep the files in the spool folder open? We've had an issue with that when we were

Re: error Cannot create cookie: path = /

2004-10-23 Thread Rich Tretola
What do you have your XX:MaxPermSize= set to? Rich On Fri, 22 Oct 2004 21:39:14 +0100, Andrew Dixon [EMAIL PROTECTED] wrote: In this document: http://www.macromedia.com/support/coldfusion/ts/documents/cfmx_perf_tips.htm under the heading Memory, here is a quote: For best

Re: CF-Talk: CF5 CFMAIL Problem

2004-10-23 Thread Paul Smith
At 11:01 AM 10/23/2004, you wrote: Is it possible that you're out of space on that drive? No. Lot's of space. CF will go crazy if it cannot move the file to the undeliverable folder. Or do you have any 0 byte files? Don't know now. Deleted them all. (There *might* have been one.)

Re: StrucKeyFind Question

2004-10-23 Thread Michael Traher
I think one problem is that StructKeyFind returns an array , not a boolean value that can be tested in the CFIF. Overall though a simpler approach may work just as well :-) On Thu, 21 Oct 2004 08:50:12 -0700, Harold Brauer [EMAIL PROTECTED] wrote: I have an array of structures in a UDF. I am

Re: CF5 CFMAIL Problem

2004-10-23 Thread Matt Robertson
Sounds kind of like the old zero-byte-file problem. Look for a file in the cf spooler that is zero bytes long. If you find one 1. stop the CF services 2. delete the file 3. restart CF -- --Matt Robertson-- President, Janitor MSB Designs, Inc. mysecretbase.com

Re: Problem With Insert

2004-10-23 Thread Joe Rinehart
Phillip, It looks like you're inserting a new row into the table each time, in which case it'd only go to two. What I think you mean to do is update the row of the image returned by GetInfo3, in which case you'd want to use an UPDATE statement. Try this: cfquery datasource=applewood

Cache flush

2004-10-23 Thread CFDEV
Hi, once someone changed a parameter on a site (the parameter is stored in a session variable) I would like to flush the person's cache cause even if I change the value of the session variable, some display element stays the same.. Is it possible to do this? cause if i refresh it's ok, if I

Re: OT: Qn regarding multiple submit buttons on one page

2004-10-23 Thread Larry Lyons
I've got a situation as follows... +-+ | form| | (cancel)(submit) | +-+ Both buttons are actually image input tags as I use custom images rather than simply the generic buttons. The default action (e.g. when you hit

Re: error Cannot create cookie: path = /

2004-10-23 Thread Andrew Dixon
-XX:MaxPermSize=128m On Sat, 23 Oct 2004 11:54:56 -0500, Rich Tretola [EMAIL PROTECTED] wrote: What do you have your XX:MaxPermSize= set to? Rich ~| Sams Teach Yourself Regular Expressions in 10 Minutes by Ben Forta

Re: Cache flush

2004-10-23 Thread Josh
Are you talking about flushing the browser cache? or the session variable? -- Exciteworks, Inc Expert Hosting for less! *Ask for a free 30 day trial!* http://exciteworks.com Plans starting at -$12.95- including MS SQL Server! CFDEV wrote: Hi, once someone changed a parameter on a site (the

Re: error Cannot create cookie: path = /

2004-10-23 Thread Rich Tretola
Thanks for your help, I am going to change the min to be the same as the max. My cfserver has been using between 260 - 300mbs so I guess I will keep the min/max at 512 for now. Would caching some queries add to the total memory needed by CF? Rich On Sat, 23 Oct 2004 22:22:08 +0100, Andrew

Re: error Cannot create cookie: path = /

2004-10-23 Thread Rich Tretola
My numbers now look like this: Free Allocated Memory: 417mb Total Memory Allocated: 502mb Max Memory Available to JVM: 502mb % of Free Allocated Memory: 83% % of Available Memory Allocated: 100% Would caching some queries add to the total memory needed by CF?

Re: error Cannot create cookie: path = /

2004-10-23 Thread Josh
Yes, caching queries will add to the amount of memory needed by CF. If I am not mistaken, cached queries are stored in memory... -- Exciteworks, Inc Expert Hosting for less! *Ask for a free 30 day trial!* http://exciteworks.com Plans starting at -$12.95- including MS SQL Server! Rich

AOL and spam filtering

2004-10-23 Thread sp
I use the CFMX cfmail tag to send emails from a database query. Alot of AOL users are reporting that they are not receiving them. Most of the time this is due to AOL recogniging the emails from the cfmail tag as spam and it ends up in the persons spam folder. Many people are not computer savvy

RE: Execute Query string w CFQUERYPARAM

2004-10-23 Thread Dave Watts
So in CF 4 they transfered the query to a JDBC statement? No, ODBC also supports prepared statements with bind parameters. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444 ~|

The final stretch...

2004-10-23 Thread Phillip Perry
OK so I thought I had this thing licked but now its messed up again. I took out the date thing becuase its not that important anymore. I added 2 fields to my imagelist table called count and clicks. Everything was working fine when i had 4 records to look up. When I deleted the 4 test records from

RE: Cache flush

2004-10-23 Thread CFDEV
The browser I guess.. Patrick -Original Message- From: Josh [mailto:[EMAIL PROTECTED] Sent: October 23, 2004 18:40 To: CF-Talk Subject: Re: Cache flush Are you talking about flushing the browser cache? or the session variable? -- Exciteworks, Inc Expert Hosting for less! *Ask for a

RE: Cache flush

2004-10-23 Thread James Holmes
You are better of using no-cache headers to prevent the page from being cached in the first place. -Original Message- From: CFDEV [mailto:[EMAIL PROTECTED] Sent: Sunday, 24 October 2004 12:39 To: CF-Talk Subject: RE: Cache flush The browser I guess.. Patrick

RE: The final stretch...ANSWERED

2004-10-23 Thread Phillip Perry
I figured it out. I used ListGetAt. For some reason my brain doesn't want to give me the answer until I hit the send button. :) Phil -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Sunday, October 24, 2004 12:35 AM To: CF-Talk Subject: The final stretch... OK so