Download the Bleeding Edge Release and let me know if that works. I added some functionality about 6 months ago regarding this but it was more geared towards...
Details on this addition: http://tech.groups.yahoo.com/group/fusebox5/message/3769 And http://cfrant.blogspot.com/2008/09/fusebox-status.html Looks like i was...
In a project today I had to use JavaScript to navigate around a bit. I didn't want to hard code my fuseactions in the JS, and at the same time I didn't want to...
I opened a minor bug for this in JIRA. If that wasn't the right thing to do, I'll go close it. I don't want to come off as a whiner here, just trying to do...
Everyone- Okay, I'm working though this hybrid method and I'm having some difficulty. I don't think in my last post I mentioned I am trying to use a CFC as a...
Could you need to rename the file cSystem.xml.cfm? From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Ryan J. Heldt Sent: Monday,...
Got the same error. ... Got the same error. Sandra Clark wrote: Â Could you need to rename the file cSystem.xml. cfm? Â From: fusebox5@yahoogroup s.com [...
If you want to use CFCs as a circuit but do not want to follow the conventional folder structure you'll have to use the BER I linked to the other day. Further...
Ryan, Try ending all the circuit definitions with a slash. ... Becomes: <circuits> <circuit alias="cSystem" path="circuits/system/" parent="" /> <circuit...
Hey Adam- Thanks for all your help. As you said, I downloaded the BER and set my application to use it: <cfcomponent extends="com.fusebox552ber.Application"...
Do you still have a circuit.xml (or circuit.xml.cfm) in that directory? That'll possibly screw with Fusebox. What does the debugging output? Adam ... Do you...
Well one thing is perfectly clear, I need to add a couple more lines of debugging in there. As I suspected though no "Circuit Found at: ..." was mentioned....
I have been trying to add an OnRequestEnd() method to my application and noticed that as soon as I do the Fusebox debugging output is suppressed. Simply add...
You have to call fusebox onRequestEnd. eg <cfset super.onRequestEnd() /> before you run your own code. ... -- -- if you've written a homegrown[*CFML]...
If you add super.onRequestEnd() at the top of the method body (the only line, in this case, since it's currently blank), that should take care of it for you....
addn. You need to pass the target page as an argument. <cffunction name="onRequestEnd" output="true"> <cfargument name="targetPage" type="string"...
Hi Adam- I made the change and re-ran. Looks like circuitFile is an empty string. For kicks and giggles, I added "#variables.alias#.cfc" to the list of ...
Personally, if it were me, I would be doing the extension so that it's not necessary to do anything differently in the circuit declaration in fusebox.xml. It...
Yeah I should probably do a type check on the type of Circuit it is and throw an appropriate error if one tries to do that, or should it instead look for a...
I think that if the circuit path is declared in fusebox.xml, it should be available for anything I can throw at it :) If I set allowImplicitCircuit to true,...
Well i think there is a bit of a misconception there. If you define a circuit as a CFC there there is not "cfm" files associated to that Circuit. I suppose if...