... Well in a fusebox environment the following files exist: - application.cfc - fusebox.xml.cfm - fusebox.appinit.cfm - fusebox.init.cfm - index.cfm -...
... In the fusebox.xml file, turn debugging on, it'll tell you what it's doing step by step for your particular app. For a detailed descrption, check out John...
http://fusebox.org/go/fusebox-downloads/beta-program Sean A Corfield -- (904) 302-SEAN An Architect's View -- http://corfield.org/ "If you're not annoying...
Louis, I think its actualy.... 1. application.cfc 2. index.cfm (calls the fusebox framework) 3. fusebox.appinit.cfm (when the fusebox app is initialized) 4....
To throw in my completely anal 2 coppers' worth: 1. application.cfc (if it exists; overrides Application.cfm and OnRequestEnd.cfm) 2. Application.cfm (if it...
Sean, I'm having a nightmare of a time getting this app to run on my client's host. You can see it here: http://wpcn.ca.previewmysite.com/index.cfm Where is...
... According to my source code, that's coming from this line: <cfset __fuseboxAppCfc = createObject("component","Application") /> Sounds like it's searching...
Why is that expected? I thought that CF would look for the CFC first in the current folder? If I can get them to make a mapping to the coreroot, could I then...
All of the Fusebox core files use unqualified CFC names so that you can put the core files in any directory. That is by design. And, no, CF does not look for...
I would like to use the ColdSpring lexicon, however I am not sure how I would initialize it. With the xml approach I used something like Sean posted on his...
... Lexicons are a way to extend the XML - if you don't use XML, you don't need lexicons. In the XML-free world, you use Application.cfc to manage per- ...
... Thanx. And don't forget you can also mix those styles with XML circuits as well, where you need a bit more control. Sean A Corfield -- (904) 302-SEAN An...
I will preface this by saying I am a newbie when it comes to proper MVC principles, with that said: What is the best way to get a dataset from the model? In...
Not sure if this was ever resolved, but I also ran into the out of memory error when trying to dump myFusebox. Further, it seems to really nuke the CF8 server...
I think this is really a bug in both the CFDUMP tag and the CF Server Monitor. Clearly the myFusebox structure is not infinite in size, it's just recursive....
... No, you cannot dump myFusebox in Fusebox 5.5 (unless you are on CF8 and tell cfdump to only show the top level of the struct). Mind you, since myFusebox is...
... Fuseactions do not return anything (except, perhaps, HTML output). ... The model can be CFCs if you want. But even with model circuits calling the CFCs,...
I was bored, so I implemented my own [partial] CFDUMP replacement that handles simple values, queries, structures, and arrays, along with protecting itself...
Any other ideas then? The application scope detail is flagging application.my_app_key as the culprit. Funny thing is, I can dump the application scope just...
A couple of weeks ago, Sean was able to troubleshoot why my Flash forms weren't loading in my Fusebox app. My form action of "##" was confusing CF because of...
... Yes. The variables scope in Application.cfc is only accessible as the variables scope of your included page if you have onRequest() (and it includes the...
FYI: I've also written about the cs lexicons here: http://www.succor.co.uk/index.cfm/2007/3/16/Setting-up-Coldspring-within-fusebox-via-the-CS-lexicons ... -- ...
Great work Sean, this version opens FB back up for those that were "turned off" by XML - tnx. ... -- Nick Tong web: http://talkwebsolutions.co.uk blog:...
WireFrame Tool Project Kevin Roche, Gavin Baumanis and I have started a conversation about a WireFrame Tool (WFT) wir-to-Xml format (WFTx) conversion project....
Dianna, First, thank you so much for taking up this challenge. Second, there is an online wf/prototyping tool I've started playing with called JumpChart. What...
Dianna: Thanks for doing this. One thing that concerned me about the current implementation is the possibility of XSS problems. A scrubber of some kind might...