If we do a fusebox.loadclean, it deletes all parsed files. Now each time the user clicks on a page, it will reparse and thus the site becomes slower. If we...
I have built six FB 5 apps. One of them is a very heavy traffic e-commerce site on 3 sticky sessioned load balanced servers. I have never seen an issue where...
Hi, The simplest way to achieve this is to switch to using j2ee session management - this is a setting in cfadmin. jsessionid is then used as a session...
... Create a deployment area for your application separate from your main webroot. Each time you change your application (or the fb-related parts of it, at ...
This is even easier. Put this in your fusebox.init.cfm: <cfif isDefined("Cookie.CFID") AND isDefined("Cookie.CFTOKEN")> <cfset localCFID = Cookie.CFID> <cfset...
I thought I saw a post about this issue recently, but of course at the time it didn't apply to me so I didn't look at it too closely and now can't find it...
I tried this exact code with Fusebox 5.5.1 and it works perfectly. What version of Fusebox are you working with? You can use this code to display the version: ...
Hi Sean. It is version 5.5.1. Well, that is good news that at least I know it SHOULD (and did for you) work the way I have it laid out. One other thing I had...
I'm willing to bet that 'event' is a reserved word, since the noxml version uses that. Seth From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On...
MOTHER TRUCKER!!!! You know how the tension just mounts and mounts while you're trying to figure out something that should be simple and yet is burning up LOTS...
Hello. Me again. Can someone help me fill in the missing method in this IF statement I've taken from my onRequestStart method? I've spent a good amount of time...
... Do it in fusebox.init.cfm - and set attributes.fuseaction to whatever value you want. You may be able to do it in onRequestStart() as well (attributes is ...
Thanks for the input, Sean. FYI, resetting the value of attributes.fuseaction within the onRequestStart() method of application.cfc (which does indeed extend ...
... Yeah, I didn't really expect that to work. ... fusebox.init.cfm was designed for manipulating the current fuseaction and it's perfectly reasonable to use...
I think you can do this in onRequestStart() if you are using the noxml version of Fusebox, although I've not considered any implications! At the top of your...
... I would not recommend this. attributes.fuseaction is the recommended way to reference the requested fuseaction but it relies on you using fusebox.init.cfm...
Hello all. I am getting a strange error when moving to production: The start tag must have a matching end tag. An explicit end tag can be provided by adding...
Sounds like something in your code is not closed properly. More Often than not, this type of error message may really have nothing to do with the actual...
... Are you trying to run your production site in development mode? Development mode is not thread-safe and should not be used in production. Sean A Corfield...
You're correct, sir. This may very well have been my issue. That parameter was accidentally set back to development-full-load. Thanks! Mike ... -- Michael...
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...
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...
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...
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...
... If your application times out, Fusebox will reload automatically and it will call onFuseboxApplicationStart(). What I suspect is happening is that some...
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. ...
I have had similar situations where the fusebox.load didn't work occasionally. I just restarted CF when that happened. :-) Greg ... -- Greg Luce Luce...
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 ... ...