Adam, Yes that would be good. I was thinking of extending the tool to get a list of the fuses too but once the circuit is there I can use the normal CFC...
Someone in the office noticed today that our freshly minted FB5.5 app had a forgotten cfdump and cfabort in the index.cfm file. But it wasn't showing up at...
If you are using Application.cfc you'll want to look into using onError (Fusebox uses this as well so please be sure to consider called SUPER.onError). If you...
I have an application built with fusebox 5.5.1 that won't start up on java 1.6.0_12. It just times out. Has anyone had success with 5.5.1 on java 1.6.0_12? ...
So, beyond putting remote CFCs under their own Application.cfc, another option may be to check for Flex Remoting calls in Fusebox's Application.cfc. In on...
The CFC must be in your sites root for that request to work. You could also create a Circuit.Fuseaction to handle those types of requests. This is the approach...
Based off some other conversations I've had around this, the next release will probably have a configurable parameter in for path's to be ignored. Adam...
If you put a blank Application.cfm CF will not go up the directory tree to find the other Application.cfc. Adam ... If you put a blank Application.cfm CF will...
I'm targeting a beta in April and maybe through May depending on the volume of feedback. I'd like the release to happen well in advance of cfunited as I plan...
... index.cfm is ignored if you have Application.cfc extending fusebox5.Application - which is how the skeleton app is set up and is the recommended approach...
On Fri, Mar 6, 2009 at 11:33 AM, matthewklevine ... Are you sure ColdFusion is really using 1.6.0_12 and not the 1.6.0 version that is installed by default by...
I did some follow up testing on other CF installs with the same app on 1.6.0_12 and they had no issues at all. It must be something with that particular set...
Wow, what a coincidence, I was having the SAME exact problem! Once I entered this fusebox variable setting in my application.cfc, the AJAX calls worked. Go...
Has anyone had a experience with Fusebox5 app timing out while starting up that was not caused by the java 6 class loading bug. I have some users that are...
Matt, if it is a ColdFusion server (not Railo or OpenBD), make sure that debugging is turned off, or, if you need debugging, disable the "report execution...
Thanks for reminding me about that! I don't thinks it's the main problem because My Vista dev environment has it's report execution times turned on and my app...
Also with cf8 ensure the profiling is off, turn off all server monitoring during startup. It really is only one type but I can never remember which one it is...
Check the release notes, I'll look at providing more formal tutorials sometime in the future since folks seem to think the release notes are not enough. I do...
I've started a new app that authenticates users against a corporate AD repository. I put my user validation code in my prefuseaction: <!--- authenticate...
Try throwing your dump into the <cfif getUserInfo.recordcount gt 0> block . I'm guessing the getUserInfo query is not returning a recordcount. Seth From:...
Actually the query works fine. I didn't clarify my setup enough for you... Everything except the last cfoutput is in my controller CFC in the prefuseaction...
XFA's are eXitFuseActions, and should only be used to control the flow of the application from the controller (think hrefs and form actions). Are you using...
Help me understand why you are trying to use a session variable instead of the built in functions. Also I thought cfloginuser was to be used inside cflogin....
Hi again, The noxml fusebox is more poor them xml based style? What is the advantage to use noxml? I will lost all my magic lexicons that I developed? --...
... Some people don't like XML - the noxml style is for them. If you have lexicons, stick to XML style. They are two different styles, with different...
I have been using FB since version 1, I have developed several large application in both XML and noxml. The benefit for me is the ability to rapildly develop...