Re: Trouble with ArrayAppend

2014-12-20 Thread Rodney Enke
I believe you are just passing a reference of the tmpAddress to the array, so it is being overridden with each loop. Try the following to insert a copy of the structure into the array instead: ArrayAppend(results.Deal.addresses,duplicate(tmpAddress)); - Rodney On Fri, Dec 19, 2014 at 4:39 PM,

Re: bypassing the site-wide error handler

2014-12-08 Thread Rodney Enke
The site wide error handler will not run if there is a local error handler, such as CFTRY/CFCATCH or CFERROR, unless the CFTRY/CFCATCH block rethrows the error. - Rodney On Mon, Dec 8, 2014 at 8:52 PM, Dave Watts dwa...@figleaf.com wrote: Hi, when can an application bypass the CF v9

Re: onApplicationStart and cfmail, when doess server start?

2014-04-01 Thread Rodney Enke
That is correct behavior. An application does not start until a page within its scope is requested. You have a few options though. Use onServerStart (CF 9+). Use another server to monitor it. Use a third party program such as FusionReactor. I highly recommend it and it's well worth the money

Re: CF10 dump bug

2013-09-11 Thread Rodney Enke
At this point I would look at bad HTML preceding the cfdump or CSS styles causing the reformatting. On Wed, Sep 11, 2013 at 7:35 AM, Nando d.na...@gmail.com wrote: Russ, I already tried your tag, but it doesn't seem to format rows of data from a query in a way that is easy to overview.

Re: Outputting SQL aliases as table headers

2013-08-29 Thread Rodney Enke
You can use array notation to reference columns with spaces. So, instead of myQuery.column with space use myQuery[column with space][myQuery.currentRow] On Thu, Aug 29, 2013 at 10:09 AM, DURETTE, STEVEN J sd1...@att.com wrote: Try looking at query_name.columnList it should have a list of

Re: Form Fields suddenly self validating? Now required?

2013-05-21 Thread Rodney Enke
As Justin mentioned, if the page was recently changed to an html 5 doctype setting required to any value evaluates to true. Try remove the required attribute completely. You can also add novalidate to the form tag. On Tue, May 21, 2013 at 6:41 PM, Russ Michaels r...@michaels.me.uk wrote:

Re: I am stumped

2013-04-10 Thread Rodney Enke
I think it's a matter of order of execution in your where clause. I believe it is being interpreted as: WHERE (Name = '#Form.SHIPTONAME#' AND Birthdate = '#Birthdate#') OR Email = '#Form.Email#' and you are expecting: WHERE Name = '#Form.SHIPTONAME#' AND (Birthdate = '#Birthdate#' OR Email =

Re: CF Builder 2 or Sublime Test 2

2013-03-18 Thread Rodney Enke
Check out the SublimeLinter plugin for Sublime Text 2. It adds html tidy support as well as support for many other languages. https://github.com/SublimeLinter/SublimeLinter On Mon, Mar 18, 2013 at 12:17 PM, Rob Voyle robvo...@voyle.com wrote: Hi Mark I was thinking more of integration

Re: cfajaxproxy... not defined return variable.

2012-09-12 Thread Rodney Enke
In your cfc method try changing the returntype=json to returntype=any and add the attribute returnformat=json so you function declaration should look like: cffunction name=getAllConferencePresentations access=remote output=false returntype=any returnformat=json I have not tested this so it may

Re: BUG in CF9 Encrypt and Decrypt?

2011-08-31 Thread Rodney Enke
I'd start by removing trim() from your encrypt call. Any change to an encyrtped value will cause failure. -- Rodney On Wed, Aug 31, 2011 at 1:23 PM, Robert Harrison rob...@austin-williams.com wrote: This has got to be a bug. The question is does this make CF encrypt and decrypt totally

Re: BUG in CF9 Encrypt and Decrypt?

2011-08-31 Thread Rodney Enke
Er, remove from the decrypt call. -- Rodney ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: ColdFusion Builder 2 - Comment Mapping

2011-08-25 Thread Rodney Enke
Go to Preferences General Keys and remove the Ctrl+Shift+M mapping then you should be able to set it under ColdFusion. I believe it is mapped to 'Add Import' by default. -- Rodney On Thu, Aug 25, 2011 at 9:00 AM, Cameron Childress camer...@gmail.comwrote: Finally giving CFB2 a try (plugin

Re: Lightweight code editor, CF support would be a plus

2011-02-05 Thread Rodney Enke
You didn't mention what OS, but if your looking for a Windows editor I'd recommend Emeditor by Emurasoft. It's lightweight, GREAT for log files and has a CF plugin. The plugin is out of date but works in a pinch. - Rod On Sat, Feb 5, 2011 at 8:53 PM, Pete Ruckelshaus

Re: why is cf_builder so slow? (was: expensive)

2011-01-27 Thread Rodney Enke
I tried the initial release of CFB and had the same slowness issues others have already stated so I never purchased it. I've decided to give it another try since the update should fix some of the problems I experienced, however on reinstall of the trial I need to enter a serial number or it

Re: why is cf_builder so slow? (was: expensive)

2011-01-27 Thread Rodney Enke
Consulting wilg...@trunkful.com www.trunkful.com On Jan 27, 2011, at 11:35 AM, Rodney Enke wrote: I tried the initial release of CFB and had the same slowness issues others have already stated so I never purchased it. I've decided to give it another try since the update should fix some

Re: Compare Strings

2009-04-07 Thread Rodney Enke
Your first set of statements will work once you change the first replace to rereplace. - Rod On Tue, Apr 7, 2009 at 9:53 AM, Pranathi Reddy rk.prana...@gmail.comwrote: cfset string1 = '0010as1000' cfset string2 = '10as1'

Re: can't seem to get form in structKeyExists

2006-06-07 Thread Rodney Enke
Ony form fields, not the form name, get passed in with the form variables. Change your if statement to the following: cfif structKeyExists(form,'county') That should fix it. - Rod On 6/7/06, Daniel Kessler [EMAIL PROTECTED] wrote: !--- the below form submits using the following js ---

Re: CSS UL IE help

2006-03-03 Thread Rodney Enke
IE is applying your UL style (style=padding:5px 0px 5px 40px) to each LI element and Firefox is not. Either remove the UL style completely or wrap a DIV around the list and move the UL style to the DIV element. - Rod On 3/3/06, Ray Champagne [EMAIL PROTECTED] wrote: I have a site I'm mocking

Re: Can anyone spot a problem with this query?

2006-01-25 Thread Rodney Enke
You're missing the closing parenthesis ')' after the last queryparam. - Rod On 1/25/06, Rick Faircloth [EMAIL PROTECTED] wrote: MySQL is giving me an ODBC Error Code = 23000 (Integrity contraint violation) and says I have an error in my SQL syntax...I can't find it...data being sent from

Re: Any Interest in a Completely Free CFML Calendar?

2005-10-14 Thread Rodney Enke
I would definitely be interested in a free CFML calendar. - Rod Enke PracticeMatch, Inc. 314-878-1440 www.practicematch.com http://www.practicematch.com ~| Logware (www.logware.us): a new and convenient web-based time tracking

Re: Studio 8 announced (flash player 8 in firefox)

2005-08-08 Thread Rodney Enke
There are some extensions in Firefox that cause problems with the new flash player. Try disabling them if you have any installed. - Rod On 8/8/05, Phill B [EMAIL PROTECTED] wrote: Winxp pro. and firefox 1.0.6 Flash absolutely doesn't load. Just a blank spot where it should be. On

Re: listtoArray blank entries

2005-06-29 Thread Rodney Enke
You'll have to loop through the list and append each value to the array if you want to capture empty list elements. The following code should work, but I haven't tested it so it might not. cfset myAr = ArrayNew(1) cfset myVar = 'Produce|Apples |green, bagged|1.23/lb3 lb|1|0 g|0 mg|0 mg|22

Re: CFChart dieing

2005-03-07 Thread Rodney Enke
I would guess that you updated your JVM. I had the same problem when CFMX first came out and I had to roll back the JVM to 1.3.1_09 in order to use another account besides the LocalSystem account for the CF service and have a working CFCHART. A newer JVM may work, but I haven't tried. - Rod

Re: CFChart dieing

2005-03-07 Thread Rodney Enke
machine has never had the stock JVM changed, still at 1.4.2_b28, IIRC. This really bites. We have 6 boxes running CFMX6.1 UPD1 ENT. 2 of the 6 have this issue, the others do not. DK On Mon, 7 Mar 2005 12:34:28 -0600, Rodney Enke [EMAIL PROTECTED] wrote: I would guess that you updated

Re: Free Coldfusion Devs Tool

2005-02-22 Thread Rodney Enke
Great little app, but I keep getting an error along the lines of The selected method maxMemory was not found. Everything else appears to be working fine. - Rod On Tue, 22 Feb 2005 14:55:55 -0500, dave [EMAIL PROTECTED] wrote: totally! that and the lack of free community tools is what is

Re: Free Coldfusion Devs Tool

2005-02-22 Thread Rodney Enke
Feb 2005 14:15:09 -0600, Kevin Aebig [EMAIL PROTECTED] wrote: What version of Coldfusion are you running? Is it on a shared server? Any sandbox restrictions? Cheers, Kevin -Original Message- From: Rodney Enke [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 22, 2005 2:10 PM