Sorry. I didn't realize that you asked for the file structure. /www index.cfm Application /images /Data /Circuits /Security act_CheckBansByIP.cfm /parsed ...
Brian duh!!! how could I have missed something so obvious. thanks Qasim ... -- Qasim Rasheed Certified Advance ColdFusion MX Developer (IM qasimrasheed AT...
Maybe a dumb question but... It seems like everytime CF Server is rebooted Fusebox 5 need to be re-initialized. True? If so, is there any way around having to...
Hello: First, sorry if this has been addressed elsewhere. If it has, please point me the posting. I'm using the following pattern to create session objects...
Although my answer isn't related to your original question, but I would use a scope lock instead of named for session variables. HTH Qasim ... -- Qasim Rasheed...
If the server is restarted, everything on the CF server is gone too. So the first request to a Fusebox app after a restart will initialize the application. I'm...
Well first ask yourself if you really need to do double-checked locking here. It probably can't hurt but it is also probably overkill. What you describe will...
Thats what I thought, thanks. The problem is that Fusebox 5 takes quite a bit of time to initialize... we have a large website so I have code in the index.cfm...
I think option A would work best for you. Just write a shell script: wget http://yourserver/index.cfm?requestTimeout=600 and call that script on server...
... Remove those three lines. Your parsed directory is in the usual place so parsePath = parsed/ (these are relative to the application root). It *should* work...
A shell script for CF server to run, right? ________________________________ From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Mike...
I was thinking more along the lines of a shell script that your OS could run on reboot. But now is has just occurred to me that you're not rebooting the...
Exactly... we are actually just restarting the CF service. The code idea in application.cfm I think is certainly a possibility. Anyone else have suggestions? I...
Why not just put some conditional code right before you include the Fusebox core (in index.cfm or Application.cfm/cfc) that checks for the existence of the...
Thanks Mike.... I'm going to try that now on our dev box. So I'm guessing that CF Setting will override the admin timeout... like the url version does. True? ...
AFAIK, The url version of requesttimeout is not supported in CFMX. Thanks Qasim ... -- Qasim Rasheed Certified Advance ColdFusion MX Developer (IM qasimrasheed...
Tried it... getting this error right off the bat "Variable application is undefined" ________________________________ From: fusebox5@yahoogroups.com...
From the docs: Migration note from ColdFusion 5 to ColdFusion MX: Passing the RequestTimeout parameter in the URL is deprecated in ColdFusion MX. You need to...
Yes. that's exactly what it was doing. I misunderstood. Sorry. So your code sample should work perfectly then because now instead of checking for the existence...
Yes that is how I would do it. You can't put it before the cfapplication tag since there is no application created yet at that point. In Application.cfc, I'd...
It is working as expected. I've done multiple tests with and without the snippet, after reboots and it works perfectly. Many thanks to Brian and Mike and...
If you're replying to long messages and/or a thread with lots of replies, delete all quotes that are not directly relevant to what you're replying to. ...
... No. By definition, when you restart CF, all applications must restart. ... There is always increased load on a freshly restarted CF server, no matter what...