Delving into Coldfusion, jQuery, HTML5 and Linux

Guess what? It doesn’t exist. You are so foo bar! The work around is to use: include “mycfsettinginclude.cfm”; In that file just add one line, your cfsetting tag.  It’s hacktastic but it works. Oh, and don’t forget to bitch to Adobe about this oversight. sheesh!

Read more...

§123 · June 24, 2011 · Coldfusion, Uncategorized · (No comments) · Tags: ,


I was surprised to find that you have to be careful when ordering your filters in DirectoryList(). E.g. “*.ppt|*.pptx” will not show both ppt and pptx files, while “*.pptx|*.ppt” will. Can’t tell you why, but just be aware of it.

Read more...

§125 · June 8, 2011 · Coldfusion · (No comments) · Tags: ,


When working with cfdirectory or DirectoryList you can pass in multiple filters like this “*.png|*.jpg”. Pretty simple and the pipe is easy to remember. When using cffileupload though, you have to separate your filters using a comma. e.g. “.png,.jpg” This sucks if you’re trying to store a single filter and use it in two places. [...]

Read more...

§126 · June 7, 2011 · Coldfusion, Uncategorized · (No comments) · Tags:


You can pass a structure to your methods using this: myFunc(argumentCollection=myStruct);

Read more...

§127 · May 6, 2011 · Coldfusion, Uncategorized · (No comments) · Tags:


Call me stupid, but I just spent a good bit battling a CFC trying to utilize implicit accessors which just didn’t seam to be there. This all came about after reading some blogs on the subject. Come to find out that unless you’re persisting your CFC for use by ORM, the accessors are NOT created [...]

Read more...

§129 · April 18, 2011 · Coldfusion, Uncategorized · (No comments) · Tags: