This may actually be a ColdFusion bug, but I'm not sure yet.
I'm running CF9 Enterprise and setting up a dedicated instance of cf and running the site through IIS7(with 6 tools).
Trying to run my fw/1 app shows that the variables.framwork structure is never created. Very strange. I set it up like the example in the docs shows, using the following syntax:
variables.framework = {
defaultItem = 'index',
home = 'main.index',
error = 'main.err',
unhandledExtensions = 'css,ico'
};
This doesn't work and doing a writedump(variables.framework) comes back with framework not defined.
If, on the other hand, I use this syntax:
variables.framework.defaultItem = 'index';
variables.framework.home = 'main.index';
variables.framework.error = 'main.err';
variables.framework.unhandledExtentions = 'css,ico';
everything seems to work fine.
The original code worked under 9.0.0.
Is this a known issue? Is it by design and I'm coding something wrong? What gives?