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 2347 - 2376 of 4396   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2347
Sorry. I didn't realize that you asked for the file structure. /www index.cfm Application /images /Data /Circuits /Security act_CheckBansByIP.cfm /parsed ...
Phillip M. Vector
lance_lake
Online Now Send Email
Aug 1, 2007
1:05 pm
2348
Seth (and Sean): Adding index.cfm to the URL did it. I guess you can teach an old dog new tricks Thanks for your help! Blue ... problem. ... ...
ultra_blue
Online Now Send Email
Aug 1, 2007
3:51 pm
2349
Brian duh!!! how could I have missed something so obvious. thanks Qasim ... -- Qasim Rasheed Certified Advance ColdFusion MX Developer (IM qasimrasheed AT...
Qasim Rasheed
qasim_1976
Offline Send Email
Aug 1, 2007
4:45 pm
2350
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...
Doug Allan
douguitarman
Offline Send Email
Aug 1, 2007
5:03 pm
2351
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...
ultra_blue
Online Now Send Email
Aug 1, 2007
5:17 pm
2352
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...
Qasim Rasheed
qasim_1976
Offline Send Email
Aug 1, 2007
5:57 pm
2353
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...
Brian Kotek
brian428
Offline Send Email
Aug 1, 2007
5:57 pm
2354
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...
Brian Kotek
brian428
Offline Send Email
Aug 1, 2007
6:06 pm
2355
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...
Doug Allan
douguitarman
Offline Send Email
Aug 1, 2007
6:08 pm
2356
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...
Mike Haggerty
ghoti143
Offline Send Email
Aug 1, 2007
6:49 pm
2357
... 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...
Sean Corfield
seancorfield
Online Now Send Email
Aug 1, 2007
6:55 pm
2358
A shell script for CF server to run, right? ________________________________ From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of Mike...
Doug Allan
douguitarman
Offline Send Email
Aug 1, 2007
6:59 pm
2359
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...
Mike Haggerty
ghoti143
Offline Send Email
Aug 1, 2007
7:16 pm
2360
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...
Doug Allan
douguitarman
Offline Send Email
Aug 1, 2007
7:25 pm
2361
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...
Brian Kotek
brian428
Offline Send Email
Aug 1, 2007
7:43 pm
2362
Here is my index.cfm code: <cfapplication name="GXPV2" clientmanagement="yes" setclientcookies="yes" sessionmanagement="no" ...
Doug Allan
douguitarman
Offline Send Email
Aug 1, 2007
7:49 pm
2363
<!--- index.cfm ---> <cfif not StructKeyExists(application, 'fusebox')> <cfsetting requestTimeout="600" /> </cfif> <cfapplication name="GXPV2"...
Mike Haggerty
ghoti143
Offline Send Email
Aug 1, 2007
8:27 pm
2364
The first solution worked. THANK YOU! :)...
Phillip M. Vector
lance_lake
Online Now Send Email
Aug 1, 2007
8:29 pm
2365
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? ...
Doug Allan
douguitarman
Offline Send Email
Aug 1, 2007
8:48 pm
2366
AFAIK, The url version of requesttimeout is not supported in CFMX. Thanks Qasim ... -- Qasim Rasheed Certified Advance ColdFusion MX Developer (IM qasimrasheed...
Qasim Rasheed
qasim_1976
Offline Send Email
Aug 1, 2007
8:57 pm
2367
I've used it quite a bit in MX 7 with great success. Are you referring to MX 6? ________________________________ From: fusebox5@yahoogroups.com...
Doug Allan
douguitarman
Offline Send Email
Aug 1, 2007
9:02 pm
2368
Tried it... getting this error right off the bat "Variable application is undefined" ________________________________ From: fusebox5@yahoogroups.com...
Doug Allan
douguitarman
Offline Send Email
Aug 1, 2007
9:06 pm
2369
I got around that error and I think it is working as expected. Still testing now. I put the code like this... <cfapplication name="GXPV2"...
Doug Allan
douguitarman
Offline Send Email
Aug 1, 2007
9:25 pm
2370
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...
Brian Kotek
brian428
Offline Send Email
Aug 1, 2007
9:40 pm
2371
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...
Doug Allan
douguitarman
Offline Send Email
Aug 1, 2007
9:56 pm
2372
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...
Brian Kotek
brian428
Offline Send Email
Aug 1, 2007
10:05 pm
2373
Correct. ... From: Doug Allan <douga@...> To: fusebox5@yahoogroups.com Sent: Wednesday, August 1, 2007 5:55:41 PM Subject: RE: [fusebox5] Fusebox 5 /...
Brian Kotek
brian428
Offline Send Email
Aug 1, 2007
10:12 pm
2374
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...
Doug Allan
douguitarman
Offline Send Email
Aug 1, 2007
10:27 pm
2375
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. ...
Peter Boughton
boughtonp
Offline Send Email
Aug 1, 2007
10:38 pm
2376
... 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...
Sean Corfield
seancorfield
Online Now Send Email
Aug 1, 2007
11:03 pm
Messages 2347 - 2376 of 4396   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