Thanks for the clarification Sean - I thought it probably wasn't a wise move (hence my original disclaimer). I just had to try and solve the problem that was...
3659
Jesse
stang_inc
Jul 2, 2008 3:50 pm
We currently have a few FB 5.5 apps in a dev environment and it seems that at random we are unable to rebuild the application scope using the url params...
3660
aliaspooryorik
Jul 2, 2008 4:09 pm
Are you trying to refresh the application scope or the fusebox variables in the application scope. fusebox.load=true&fusebox.parse=true only rebuilds Fusebox...
3661
Jesse
stang_inc
Jul 2, 2008 4:30 pm
The way I set up my app is I have basically the same thing your talking about in onRequestStart() I check to see if the application scope has timed out and if...
3662
Sean Corfield
seancorfield
Jul 2, 2008 4:37 pm
... If your application times out, Fusebox will reload automatically and it will call onFuseboxApplicationStart(). What I suspect is happening is that some...
3663
Jesse
stang_inc
Jul 2, 2008 4:44 pm
I am pretty sure all our app names are unique because we are using the following code to set the app names. <cfset this.name = ...
3664
Jesse
stang_inc
Jul 2, 2008 5:29 pm
Ok I got this narrowed down to fusebox.load=true&fusebox.password=ourpassword is just not reliable in our case, sometimes it works and sometimes it does not. ...
3665
Greg Luce
cf_greg
Jul 2, 2008 6:10 pm
I have had similar situations where the fusebox.load didn't work occasionally. I just restarted CF when that happened. :-) Greg ... -- Greg Luce Luce...
3666
Jesse
stang_inc
Jul 2, 2008 7:01 pm
Unfortunately working on a network owned by the federal gov it's not that easy to get someone to restart a service when you need it. ... using the ... ...
3667
Doug Boude
dboude2
Jul 8, 2008 5:57 pm
Hi all. In my Application.cfc I'm using a portion of the 'onFuseboxApplicationStart39; method to clear out my session. However, on the initial startup of the app...
3668
Bob Silverberg
bobsilverberg
Jul 9, 2008 5:46 pm
Is there anything built into the framework to "lock" the app while it's reloading? If I request a loadclean=true, and it takes a couple of minutes to run, I'd...
3669
derekhed
Jul 21, 2008 3:19 am
Would fusebox.init be an acceptable place to dynamically change the DEBUG or MODE Fusebox parameters? If not, where? I need a way to modify these based on CGI...
3670
Mike Ritchie
starkraving2002
Jul 21, 2008 3:36 am
If you're talking in the context of FB5 for PHP, dynamically changing Fusebox variables isn't possible yet. It's coming though: I'm finishing off the first...
3671
derekhed
Jul 21, 2008 5:55 am
Stark, Very complete answer, thank you. So I could probably change an existing variable upon a subsequent request (obviously the Fusebox structures don't exist...
3672
Mike Ritchie
starkraving2002
Jul 21, 2008 6:11 am
This is only possible in FB5.5. Basically all you need to do is set FUSEBOX_PARAMETERS.mode and/or FUSEBOX_PARAMETERS.debug to whatever values you want, in...
3673
derekhed
Jul 21, 2008 7:53 pm
Stark, I wasn't sure if any values would get stomped or not, thanks for clarifying that. Nice touch that the Fusebox core files check for these variables... DH...
3674
derekhed
Jul 21, 2008 7:56 pm
I am just poking around in the new myFusebox structure and wondered if given all the new methods, is this line from the older security code still the 'best'...
3675
Sean Corfield
seancorfield
Jul 21, 2008 8:34 pm
... You can reliably set attributes.fuseaction to "security.login" inside fusebox.init.cfm and it will "just work" regardless of what your fuseactionvariable...
3676
Doug Boude
dboude2
Jul 21, 2008 8:39 pm
Derek, In my FB 5.5 app I used the "relocate" function to redirect to the fuseaction of my choice. After my IF statement evaluating whether redirection is...
3677
smccran
Jul 22, 2008 3:30 pm
Hi all, First post so go easy :-). In the xml version of FB5 you declare the circuits like this (in fusebox.xml.cfm): <circuits> <!-- illustrates defaults for...
3678
aliaspooryorik
Jul 22, 2008 3:44 pm
Welcome to the list! If I understand correctly then that should be all you have to do. Fusebox no xml relies on you using a defined structure so that it can ...
3679
Sandra Clark
slclark2499
Jul 22, 2008 3:44 pm
You can't. the noxml version uses an implicit circuit reference. FUSEBOX_Parameters.allowImplicitFusebox = true must be emabled in Application.cfc or...
3680
neobob182
Jul 25, 2008 2:12 pm
John, I am trying to set up another site and I thought I'd try your code that you give here out and see how it works. When I put this in my fusebox.init.cfm...
3681
Mike Ritchie
starkraving2002
Jul 29, 2008 3:29 pm
I see in myFusebox the private property 'attributes39; is copied from the initial global variable attributes, which is passed in as an argument when the...
3682
Sean Corfield
seancorfield
Jul 29, 2008 4:22 pm
I think what you're looking for is the bleed() method that "leaks" variables back into the global scope. From memory as I'm not at my computer (I'm on the San...
3683
Mike
starkraving2002
Jul 29, 2008 5:52 pm
Hi Sean, I did look at that, but from how I read it, bleed() would return the attributes stored in Application.cfc, no? Where does Application.cfc acquire the...
3684
Sean Corfield
seancorfield
Jul 29, 2008 6:37 pm
Sorry, I really don't have time to walk folks thru the core files right now - especially on a public mailing list! Trust me that I'm pointing you in the right...
3685
CF
procept2000
Jul 31, 2008 8:58 pm
Hi all, I just relaunched our UG web site which now is built with Fusebox 5.5, using CFCs as implicit circuits. I use Application.cfc with onError() for error...
3686
Sean Corfield
seancorfield
Jul 31, 2008 10:16 pm
... What version of ColdFusion are you running? This is a known bug in ColdFusion that (I think) is fixed in recent releases. Google for "onError cfabort" and...
3687
CF
procept2000
Jul 31, 2008 10:57 pm
... I googled for "fusebox relocate exception Application.cfc" in various combinations... to try the simpler search terms never came to my mind. Now I found a...