Search the web
Sign In
New User? Sign Up
fusebox5
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3959 - 3988 of 4403   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3959
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...
John M Bliss
houston_blue...
Offline Send Email
Nov 1, 2008
12:59 pm
3960
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...
kinggassi
Offline Send Email
Nov 11, 2008
3:20 pm
3961
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...
Sandra Clark
slclark2499
Offline Send Email
Nov 11, 2008
3:26 pm
3962
Thanks Sandra! ... tried that ... portion ... itself, its ... Behalf ... Fusebox...
kinggassi
Offline Send Email
Nov 11, 2008
4:16 pm
3963
I'm not exactly sure how FBSecure works, but this is what we have done in some apps to block access to particular fuseactions. <cffunction...
Seth Johnson
cfx_user
Offline Send Email
Nov 11, 2008
4:20 pm
3964
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")/> ...
John M Bliss
houston_blue...
Offline Send Email
Nov 11, 2008
4:29 pm
3965
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...
Daniel Kim
danskim
Offline Send Email
Nov 27, 2008
12:41 am
3966
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...
Adam Haskell
krogercfug
Offline Send Email
Nov 28, 2008
5:06 am
3967
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 ... ...
houston_blue_texas
houston_blue...
Offline Send Email
Nov 28, 2008
1:14 pm
3968
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: ...
kinggassi
Offline Send Email
Dec 2, 2008
10:36 pm
3969
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:...
Adam Haskell
krogercfug
Offline Send Email
Dec 4, 2008
3:45 pm
3970
FB5.5, MVC, no XML, non-OO. I've been using this methodology to get queries out of my models: model\m_MyModel\qry_GetStuff.cfm: [snip] <cfset...
houston_blue_texas
houston_blue...
Offline Send Email
Jan 2, 2009
6:00 pm
3971
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...
Adam Haskell
krogercfug
Offline Send Email
Jan 2, 2009
6:25 pm
3972
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...
John M Bliss
houston_blue...
Offline Send Email
Jan 2, 2009
7:13 pm
3973
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...
Adam Haskell
krogercfug
Offline Send Email
Jan 4, 2009
7:46 am
3974
Sweet! Will test on Monday! Thanks, Adam! :-) ... -- John Bliss IT Professional LinkedIn: http://www.linkedin.com/in/jbliss...
John M Bliss
houston_blue...
Offline Send Email
Jan 4, 2009
2:22 pm
3975
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...
John M Bliss
houston_blue...
Offline Send Email
Jan 5, 2009
7:58 pm
3976
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...
Seth Johnson
cfx_user
Offline Send Email
Jan 5, 2009
8:42 pm
3977
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...
John M Bliss
houston_blue...
Offline Send Email
Jan 5, 2009
8:46 pm
3978
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 ...
John M Bliss
houston_blue...
Offline Send Email
Jan 5, 2009
8:51 pm
3979
That should do it, usually I just do this: http://localhost/mysite/index.cfm?fusebox.load=true ...
Seth Johnson
cfx_user
Offline Send Email
Jan 5, 2009
8:51 pm
3980
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...
Seth Johnson
cfx_user
Offline Send Email
Jan 5, 2009
8:58 pm
3981
... 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...
John M Bliss
houston_blue...
Offline Send Email
Jan 5, 2009
9:06 pm
3982
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...
Mike
starkraving2002
Online Now Send Email
Jan 5, 2009
9:51 pm
3983
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...
Adam Haskell
krogercfug
Offline Send Email
Jan 5, 2009
9:54 pm
3984
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...
John M Bliss
houston_blue...
Offline Send Email
Jan 5, 2009
10:00 pm
3985
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...
Adam Haskell
krogercfug
Offline Send Email
Jan 5, 2009
10:07 pm
3986
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...
John M Bliss
houston_blue...
Offline Send Email
Jan 5, 2009
10:14 pm
3987
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...
Adam Haskell
krogercfug
Offline Send Email
Jan 5, 2009
11:42 pm
3988
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...
Adam Haskell
krogercfug
Offline Send Email
Jan 5, 2009
11:43 pm
Messages 3959 - 3988 of 4403   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help