You lost me. Won't it go like this...? 1. onreqest 2. controller 3. model - where "Object" is initially defined 4. controller 5. view - where "Object" is...
OK I'm trying to convert FBSecure (from shayna.com) to run in Fusebox 5.5 using No XML. I'm utilizing CFCs as Circuits, but there is no Plugin support using...
My only thought would be to use AOP in ColdSpring, but I haven't tried that yet. Since the plugin itself requires the plugin points, the plugin portion of...
Concur with Seth. We use a similar approach...and then we DRY'd it out a bit. We moved the: <cfset myFusebox.do(action="security.checkAuthentication")/> ...
I was glad to read about the change to allow for circuits to be named [alias].xml.cfm. After trying to implement it, am I wrong in finding that it doesn't work...
Correct this is not implemented, or at least I did not intentionally do that ;) I could look at this beginning of next year. I guess I should have posted this...
Sweet! I'll be sad if release-notes for next version of FB don't include "Hitch Hikers Guide-inspired" next to certain items. ;-) ... do that ... posted ... ...
I'm trying to call a dynamic do from a display fuse (dspUsersAddEdit.cfm) to populate a select by looping over the query results. If I use this code: ...
you'll want to use the event object to pass the query around. In your mAdmin.qryGetRoles <cfset event.setValue("qryGetRoles", qryGetRoles) /> then in your dsp:...
Note that your are setting the return of myFusebox.do() into 'stuff' at this point. myFusebox.do() returns strings only. Specifically do() returns the output...
I see. Would the following make sense as an upcoming-version feature-request (so that you can do what I'm describing without going "outside" FB)...? One of...
In the future feel free to add these straight to the ticket system and link to it for discussion here. http://trac.fuseboxframework.org/fusebox/ticket/350 As I...
After copying 552BER files over my Fusebox5 folder, on appinit, I'm getting: Complex object types cannot be converted to simple values. The error occurred in...
Perhaps you just need to reload the framework? From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of John M Bliss Sent: Monday, January...
I stopped and restarted the CF Server service and deleted contents of parsed folder. Anything else? On Mon, Jan 5, 2009 at 2:42 PM, Seth Johnson ... -- John...
P.S. I just ran ?fusebox.loadclean=true&fusebox.parseall=true&fusebox.execute=true&fusebox.password=[app password] and got the same error... ... -- John Bliss ...
I just updated my core files and I am not getting the error message, though I have not tested your code. Maybe try deleting the fusebox5 directory and re-unzip...
... Done. Same error. Any idea what this section of code is trying to do...? That might help me figure out why I'm seeing this error... The error occurred in...
I wonder if there's a different way to tackle this? Rather than trying to access your model's method via myFusebox.do, you could just instantiate the component...
Hey John, that's a big stupid error on my part, getCircuit() returns a complex object. It should have been getCircuit().getAlias(). I was lazy yesterday and...
Thanks! That seems to have fixed that error. Now I'm seeing the following: Invalid CFML construct found on line 49 at column 191. ColdFusion was looking at...
You'd think I didn't know how to code, this is why I should have just tested this before uploading it. Truth be told I don;t have an environment setup to test...
You're a rockstar and I have complete faith in you. :-) "Final fix" here: http://dl-client.getdropbox.com/u/64114/fusebox552BER.corefiles.zip ? Looks like...
Yeah dropbox did not like me or something, this is why I need my build server running (I plan to get to this sometime this quarter). The zip should have...
I don't like the idea of creating/using a Circuit CFC on your own, you're just asking from trouble there if you ask me. Like I mentioned earlier though John...