Technology Conference on Sept. 17-18. Only $60 for 40 sessions and 2 classes!

2011-08-16 Thread Dan Wilson
NCDevCon is a 2 day, 40 session web and mobile development conference in Raleigh, NC. For $60 you get access to all 40 sessions and hands on classes. Your conference fee also includes lunch and a snazzy conference T-Shirt. Space is very limited so register as soon as you can! The conference

cflock type for Application Scope variables

2011-08-16 Thread Varun Dixit
I have some code in front of me which is like this- cflock scope=application type=READONLY timeout=50 cfset application.myVar = myQuery.myCol /cflock It's a CF8 in a multi server environment and I was seeing some inconsistencies. I always thought that when writing to a scope the lock

Re: cflock type for Application Scope variables

2011-08-16 Thread Brian Kotek
This should be an exclusive lock since you are modifying the value. And you don't want to use an application-scoped lock since that single threads the entire application scope. Use a named lock. On Tue, Aug 16, 2011 at 12:43 PM, Varun Dixit vdi...@infoplexionsolutions.com wrote: I have some

coldfusion spreadsheet leading zeroes issue

2011-08-16 Thread fun and learning
Hi All - I am facing an issue with coldfusion9 spreadsheet functions. It cuts of leading zeroes. This is what I am trying. I am getting array of data and using spreadsheetaddrows. When I am constructing an array, am using quotes so as to preserve the zeroes but with no effect. Adding some

RE: coldfusion spreadsheet leading zeroes issue

2011-08-16 Thread Brook Davies
This is an excel issue, not a CF issue. If you set the data type of the column to text it does not happen.. http://www.google.ca/search?hl=enclient=firefox-ahs=vpOrls=org.mozilla%3A en-GB%3Aofficialbiw=1920bih=1084q=excel+truncates+leading+zerobtnG=Searc

Re: coldfusion spreadsheet leading zeroes issue

2011-08-16 Thread Brian Cain
You could also try using a single quote as your leading character. This is how would would enter it in excel without changing the column formatting. BC On Tue, Aug 16, 2011 at 12:56 PM, Brook Davies cft...@logiforms.com wrote: This is an excel issue, not a CF issue. If you set the data type

cfmail doesn't work for cferror tag

2011-08-16 Thread Nathan Chen
Hi, In my application.cfm I have: cferror template=error.cfm type=exception exception=any In my error.cfm page I have some friendly text for end users and plus this: cfmail to=nathan.c...@cu.edu from=nathan.c...@cu.edu subject=CF Error Occurred: type=html Text for myself here.

Re: Can't Delete Sessions Programmatically

2011-08-16 Thread Richard Steele
Have you tried enabling J2EE sessions? Is this CF9? This is CF8 with the most recent service pack. How easy is it to switch to J2EE sessions? Is there additionally programming involved? Many thanks! R ~| Order the Adobe

Re: Can't Delete Sessions Programmatically

2011-08-16 Thread Richard Steele
We are dealing with two different applications. For example, there are calls to an image server from within the application and that image server is cold fusion based too. ~| Order the Adobe Coldfusion Anthology now!

Re: Can't Delete Sessions Programmatically

2011-08-16 Thread Brian Kotek
No, just check the box in the admin. On Tue, Aug 16, 2011 at 3:57 PM, Richard Steele r...@photoeye.com wrote: Have you tried enabling J2EE sessions? Is this CF9? This is CF8 with the most recent service pack. How easy is it to switch to J2EE sessions? Is there additionally programming

turn on debug checkbox not working

2011-08-16 Thread Michael Dinowitz
I'm in the CF admin of a newly installed CF9 box and every time I try to turn on debugging, the checkbox doesn't 'save'. I check it, hit submit, and the reloaded page shows the checkbox as blank. In addition, any change to any of the options on the page fails. I'm thinking that there is a setting

Re: coldfusion spreadsheet leading zeroes issue

2011-08-16 Thread funand learning
If I use a single quote as leading character, then thta single quote would appear in excel sheet right? At what point should I remove the quote? Can anything be done on database side. I mean can the query be formatted in any way? On Tue, Aug 16, 2011 at 2:41 PM, Brian Cain bcc9...@gmail.com

Re: Can't Delete Sessions Programmatically

2011-08-16 Thread Richard Steele
And uncheck either of the other two below it? Enable Application Variables Enable Session Variables (when unchecked, CSRF protection) Nothing needs to be changed in the third party F5 LTM Load Balancer? Thanks so much!

Re: turn on debug checkbox not working

2011-08-16 Thread Bryan Stevenson
What browser? I've seen FF hang on to form entries when reloading a pagewouldn't expect the same after a form post, but just a not where you'd look first stuff to think about ;-) Cheers On Tue, 2011-08-16 at 16:14 -0400, Michael Dinowitz wrote: I'm in the CF admin of a newly installed

Re: turn on debug checkbox not working

2011-08-16 Thread Michael Dinowitz
Both IE and Firefox On Tue, Aug 16, 2011 at 4:27 PM, Bryan Stevenson br...@electricedgesystems.com wrote: I've seen FF hang on to form entries when reloading a pagewouldn't expect the same after  a form post, but just a not where you'd look first stuff to think about ;-

Re: cfmail doesn't work for cferror tag

2011-08-16 Thread Russ Michaels
I think cferror may be limited as to what you can put in the error template, my memory is quite rusty but I think this is to avoid you causing an error in the error template. how about if you set error.cfm as the default error template in the cfadmin, does it work then ? I know this method has no

Re: turn on debug checkbox not working

2011-08-16 Thread Bryan Stevenson
So much for that strawthe one I was grasping at that is ;-) On Tue, 2011-08-16 at 16:33 -0400, Michael Dinowitz wrote: Both IE and Firefox On Tue, Aug 16, 2011 at 4:27 PM, Bryan Stevenson br...@electricedgesystems.com wrote: I've seen FF hang on to form entries when reloading a

Re: coldfusion spreadsheet leading zeroes issue

2011-08-16 Thread Brian Cain
The single quote does not appear. It is a special formatting rule for excel. It makes the column display as a character field by default. It is used specifically to handle leading zeros. Brian Cain On Tue, Aug 16, 2011 at 3:22 PM, funand learning funandlrnn...@gmail.comwrote: If I use a

RE: cfmail doesn't work for cferror tag

2011-08-16 Thread Nathan Chen
Russ, Thanks for taking time to reply. The only thing I see on Admin (under Settings) is Missing Template Handler and Side-wide Error Handler. I am not sure if this is the right place that you were referring to? Or were you talking about another area I don't know? Nathan -Original

Re: Can't Delete Sessions Programmatically

2011-08-16 Thread Brian Kotek
Not sure about your load balancer but I see no reason why it should matter. All I've ever done is check the box and everything's good to go. On Tue, Aug 16, 2011 at 4:25 PM, Richard Steele r...@photoeye.com wrote: And uncheck either of the other two below it? Enable Application Variables

Re: Can't Delete Sessions Programmatically

2011-08-16 Thread Azadi Saryev
On 17/08/2011 04:25 , Richard Steele wrote: And uncheck either of the other two below it? Enable Application Variables Enable Session Variables (when unchecked, CSRF protection) Only if you want to disable application and/or session scopes :) Azadi

Re: cfmail doesn't work for cferror tag

2011-08-16 Thread Russ Michaels
yes that is correct, set the site wide error handler to error.cfm, the file must also exist in the default website that hosts the cfadmin ot it wont save. Russ On Tue, Aug 16, 2011 at 10:26 PM, Nathan Chen nathan.c...@cu.edu wrote: Russ, Thanks for taking time to reply. The only thing I

excel sheets poiutility.cfc

2011-08-16 Thread fun and learning
Hi All - This is a third version of generating to excel options that I am trying. I was going through the examples. If I am using apache poi, should I always write to excel, then read it and display it to the user? Is it possible to just read it directly from the query and display it to the