Re: CFSetting RequestTimeout Not Working

2007-10-12 Thread Ian Skinner
It may not be a timeout issue but a upload throttle? I do not remember the exact numbers or how one configures it, but a search of the Microsoft - IIS knowledge base should turn up the details. That is where I have read about this issue. IIS has a maximum HTTP content size setting that can p

Re: CFSetting RequestTimeout Not Working

2007-10-12 Thread Shane Trahan
Thank you Rick, With that in mind that the Coldfusion doesn't start processing until after the file is completely posted perhaps it is a setting on the IIS? I don't see anything in the application log The specific error is when trying to upload a file that is approximatly 20 to 21 MB in size. T

Re: CFSetting RequestTimeout Not Working

2007-10-12 Thread Rick Root
coldfusion processing does not start until *AFTER* the file is completely posted to the server. So I'm not sure that would have anything to do with it anyway. That being said.. what exactly is the error you're seeing? Is it a timeout error showing in the application.log? (also, it's been sugges

Re: cfsetting max timeout?

2005-11-16 Thread Mik Muller
At 02:12 PM 11/16/2005, Ray Champagne wrote: >Anyone know what the maximum timeout for the requesttimeout attribute of >the cfsetting tag is? We've got a file upload script running for a >client, and need to up the timeout for larger (>15MB) file uploads. >I've got it set for 15 minutes (900s)

Re: cfsetting showDebugOutput?

2005-02-02 Thread Raymond Camden
I think CF is erring on the right side. It is saying that, since you turned it off in the admin,t here is no way to show it. That is the safest thing to do. On Wed, 2 Feb 2005 11:21:54 -0500, Dave Merrill <[EMAIL PROTECTED]> wrote: > It appears to me that is no longer able to > turn on debug inf

RE: %$#@^&%$& CFSETTING

2001-11-12 Thread Carlisle, Eric
WriteOutPut("Hello"); HA! That did it! Many thanks! That was a great timesaver for me. :) EC -Original Message- From: Steve Martin [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 7:50 AM To: CF-Talk Subject: RE: %$#@^&%$& CFSETTING Do

RE: %$#@^&%$& CFSETTING

2001-11-12 Thread Steve Martin
riginal Message- From: Carlisle, Eric [mailto:[EMAIL PROTECTED]] Sent: 12 November 2001 12:27 To: CF-Talk Subject: RE: %$#@^&%$& CFSETTING I put a directly after it. It still inserted the space. I'll play around with it with different amount of code on that line. Thanks :

RE: %$#@^&%$& CFSETTING

2001-11-12 Thread Carlisle, Eric
-Original Message- From: Michiel Boland [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 7:47 AM To: CF-Talk Subject: RE: %$#@^&%$& CFSETTING [blank line in output even after cfsetting] You don't happen to have an Application.cfm that is included somewhere?

RE: %$#@^&%$& CFSETTING

2001-11-12 Thread Michiel Boland
[blank line in output even after cfsetting] You don't happen to have an Application.cfm that is included somewhere? That may also add to initial whitespace. ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.the

RE: %$#@^&%$& CFSETTING

2001-11-12 Thread Carlisle, Eric
I put a directly after it. It still inserted the space. I'll play around with it with different amount of code on that line. Thanks :) EC -Original Message- From: BILLY CRAVENS [mailto:[EMAIL PROTECTED]] Sent: Friday, November 09, 2001 5:02 PM To: CF-Talk Subjec

Re: %$#@^&%$& CFSETTING

2001-11-09 Thread BILLY CRAVENS
No, just remove the carriage return after cfsetting. - Original Message - From: "Carlisle, Eric" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, November 09, 2001 3:50 PM Subject: %$#@^&%$& CFSETTING > I'm using a CF script to talk to a Flash SWF. The flash movie

RE: CFsetting through a loop - brainfart

2001-08-09 Thread Tyson
Erika, You're getting this error because of how HTML forms work. When a user makes no selection for a given bank of radio buttons, checkboxes, or a select box, the actualy variable for that form widget does not get passed to the processing page. In order to get around your error, it would be ea

Re: CFsetting through a loop - brainfart

2001-08-09 Thread Greg
Or use a To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, August 09, 2001 6:15 AM Subject: Re: CFsetting through a loop - brainfart > Could you use a cfparam to default a value, just in case the user did not > answer the question? > > e.g > > > Then CF w

Re: CFsetting through a loop - brainfart

2001-08-09 Thread Tim Painter
Could you use a cfparam to default a value, just in case the user did not answer the question? e.g Then CF will have a value if it is not defined.. Tim P. - Original Message - From: "Erika Foster" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, August 08, 2001 4:

Re: CFsetting through a loop - brainfart

2001-08-08 Thread jperlmutter
The answer is that if a radio button is not selected then you must test for this first, using an IsDefined function. -Jan Perlmutter "Erika Foster" <[EMAIL PROTECTED]> on 08/08/2001 04:33:40 PM Please respond to [EMAIL PROTECTED] To: CF-Talk <[EMAIL PROTECTED]> cc:(bcc: Jan E Perlmutt

RE: CFsetting through a loop - brainfart

2001-08-08 Thread Andrew Tyrone
> -Original Message- > From: Erika Foster [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 08, 2001 4:34 PM > To: CF-Talk > Subject: CFsetting through a loop - brainfart > > > Hi - this has got to be an easy fix. I've got a dynamic form sending a > dynamic amount of fields to a Quer

Re: CFsetting through a loop - brainfart

2001-08-08 Thread Daniel Chicayban
Erika, check if the variable exists, with isDefined() start loop -> cf code goes here <- end loop Daniel At 14:33 8/8/2001 -0600, you wrote: >Hi - this has got to be an easy fix. I've got a dynamic form sending a >dynamic amount of fields to a Query. The form fields Level#i# are

RE: CFSETTING, CFOUTPUT and CFINCLUDE

2001-07-26 Thread Philip Arnold - ASP
Aidan, I'll break this down into points > With ColdFusion Professional 4.01, if you have this: > > > > > ...some HTML here... > > > > > > and include.cfm is > > > ...lots of lines of CFCode here... > #variables.x# What's in the "CFCode here" bit? If it's all CFSet and CFIf, then use CFScr

Re: CFSETTING "HTML Strings" *URGENT*

2001-04-05 Thread tom muck
This one is not W3C-compliant HTML, because of the single quotes: The others are all good. If you take the above and switch the single and double quotes, you'll be okay: tom "bfalloon" <[EMAIL PROTECTED]> wrote in message 3acbdad5$[EMAIL PROTECTED]">news:3acbdad5$[EMAIL PROTECTED]... > WO

Re: CFSETTING "HTML Strings" *URGENT*

2001-04-05 Thread David E. Crawford
ot;CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, April 04, 2001 23:20 Subject: RE: CFSETTING "HTML Strings" *URGENT* > Or just get rid of the quotes. Believe it or not href=blah.cfm>whatever will work. > > > -Original Message- > > From: bfallo

RE: CFSETTING "HTML Strings" *URGENT*

2001-04-04 Thread Toby Tremayne
rom: Kelly Matthews [mailto:[EMAIL PROTECTED]] Sent: Thursday, 5 April 2001 1:21 PM To: CF-Talk Subject: RE: CFSETTING "HTML Strings" *URGENT* Or just get rid of the quotes. Believe it or not whatever will work. > -Original Message- > From: bfalloon [SMTP:[EMAIL PROTECTED]]

RE: CFSETTING "HTML Strings" *URGENT*

2001-04-04 Thread Kelly Matthews
Or just get rid of the quotes. Believe it or not whatever will work. > -Original Message- > From: bfalloon [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, April 05, 2001 10:05 AM > To: CF-Talk > Subject: CFSETTING "HTML Strings" *URGENT* > > Hello, > > Can someone help me with this pr

RE: CFSETTING "HTML Strings" *URGENT*

2001-04-04 Thread BORKMAN Lee
Any drawbacks? Well, obviously all these solutions suck except for mine ;-) leeb. ps, I can't remember whihc one was mine actually -Original Message- From: bfalloon [mailto:[EMAIL PROTECTED]] WOW! Thanks everyone! So many solutions! Which should I use?? Are there any drawbacks with an

RE: CFSETTING "HTML Strings" *URGENT*

2001-04-04 Thread Scott, Andrew
Or how about something like this:-) #CategoryName1# #CategoryName2# Would probably execute faster too!! -Original Message- From: bfalloon [mailto:[EMAIL PROTECTED]] Sent: 06 April 2001 00:05 To: CF-Talk Subject: CFSETTING "HTML Strings" *URGENT* Hello, Can someone help me with th

Re: CFSETTING "HTML Strings" *URGENT*

2001-04-04 Thread bfalloon
WOW! Thanks everyone! So many solutions! Which should I use?? Are there any drawbacks with any of the solutions below? Category'))> Thanks for the prompt responces! Benjamin "David Baskin" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Benjamin,

RE: CFSETTING "HTML Strings" *URGENT*

2001-04-04 Thread BORKMAN Lee
This looks like overkill to me. What about this?: That should work fine. If you want to include double-quotes, then use single-quotes as your delimiter, and vice-versa. If you want to include BOTH in the string, then you have to get more tricky, have fun, Lee (Bjork) Borkman http://bjork.net

RE: CFSETTING "HTML Strings" *URGENT*

2001-04-04 Thread David Baskin
Benjamin, just escape the quotes with an extra quote. HTH, david -Original Message- From: bfalloon [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 05, 2001 7:05 AM To: CF-Talk Subject: CFSETTING "HTML Strings" *URGENT* Hello, Can someone help me with this problem? I want to creat

RE: CFSETTING "HTML Strings" *URGENT*

2001-04-04 Thread Chris Michl
Try this: Category'))> -Original Message- From: bfalloon [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 05, 2001 9:05 AM To: CF-Talk Subject: CFSETTING "HTML Strings" *URGENT* Hello, Can someone help me with this problem? I want to create a string that contains HTML. Specifically a

RE: CFSETTING "HTML Strings" *URGENT*

2001-04-04 Thread Erika L Walker
Replace the double quotes with single quotes inside the html tags. I believe this is legal and I tried it to make sure and it worked. Erika "We do not love people so much for the good they have done us, as for the good we have done them." - Leo Tolstoy -Original Message- From: bfalloon