Fred B
Member since Dec 11, 2008
- Profile: /members/1706-fred-b.htm
- Comments: 5
Recent Blog Comments By Fred B
-
Custom User Agents For ColdFusion Debugging
Posted on Mar 7, 2008 at 9:35 AM
If you're using Firefox you should consider the User Agent Switcher extension https://addons.mozilla.org/en-US/firefox/addon/59... read more »
-
Does The World Know That You Use ColdFusion?
Posted on Aug 17, 2007 at 4:48 AM
Chris you are making the assumption that we all leave our CFIDE directories publicly accessible.... read more »
-
Does The World Know That You Use ColdFusion?
Posted on Aug 16, 2007 at 9:04 AM
It's not just IIS/.NET, CFML running on a LAMP server will likely identify itself as PHP in the Server header (luckily Apache makes it relatively easy to change this).... read more »
-
A Better CFParam Tag With A Catch Attribute (Proof Of Concept)
Posted on Mar 23, 2007 at 6:20 AM
Chris, I could be wrong but I think that isDefined("url.foo") will first search the variables scope for "variables.url.foo" http://corfield.org/blog/index.cfm/do/blog.entry/entry/isDefined_vs_structKeyExists... read more »
-
A Better CFParam Tag With A Catch Attribute (Proof Of Concept)
Posted on Mar 23, 2007 at 5:44 AM
Chris, as far as I'm aware structKeyExists() executes faster than isDefined(). This is because isDefined() searches each scope in turn, but with structKeyExists() you specify the scope (i.e. the structure) to search. e.g. <cfif not structKeyExists(url,"foo")>...</cfif>... read more »