ColdFusion, WordPress, Flash & other web things


Archive for the 'ColdFusion' Category

cfexit in cftransaction block

According to this Macromedia technote this is what happens when you use cfexit inside a cftransaction block:
When a cfexit tag is encountered within a cftransaction block of code, the thread in use is released, regardless if the method attribute is specified. However, because the cftransaction end tag has not been executed yet, the data source [...]

toString function on XML docs

Here is something worth knowing if you are hosting a CF site on a shared server with sandbox security.
Today, after one full day of 1 Pixel Out being live, the RSS feed page started throwing an error for no apparent reason. The feed is generated dynamically from the list of recent entries stored in the [...]

Issues with calling super methods

I ran into serious problems today when I tried to call a super method from an extended CFC. I needed to override the init() method of the parent component but I still needed to call the original method with the whole set of passed arguments. Because the original init() method had a large number of [...]