Re: application.cfm question

2006-11-09 Thread John Cox
Thanks Mike and Rich! On 11/9/06, Dawson, Michael [EMAIL PROTECTED] wrote: Application.cfm is called once per request. CFINCLUDE is not considered to be a request. However, the easiest way to test it is to add a CFMAIL or CFLOG tag to the application.cfm file and then try it on an included

Re: application.cfm question

2006-11-09 Thread RichL
John CF will just process the application.cfm of the original file not from any directory where the included file comes from (if different from the calling file) e.g. /dir1/ /dir1/dir2 - both dir1 and dir2 have their own application.cfm If you have a file in dir1 and this includes a file in

Re: application.cfm includes

2005-06-22 Thread daniel kessler
It's the former. I get most of what you're saying. Are you saying that I should just have a sessiontimeout in the timeout in the application.cfm file: other info cfapplication sessionmanagement=yes setclientcookies=yes name=db_storage sessiontimeout=#CreateTimeSpan(0,0,30,0)# then include that

Re: application.cfm includes

2005-06-22 Thread Barney Boisvert
Do it the other way. In your subdirectory have this: cfset sessionTimeout = createTimeSpan(0, 1, 0, 0) / cfinclude template=../Application.cfm / and then in your root have this: cfparam name=sessionTimeout default=#CreateTimeSpan(0,0,30,0)# / cfapplication ... sessionTimeout=#sessionTimeout# /

Re: application.cfm includes

2005-06-21 Thread Barney Boisvert
Are you talking about within a single application, or for multiple applications on the same server? If the former, just have each directory's Application.cfm set a sessionTimeout variable, and CFINCLUDE the parent directory's Application.cfm. The top-level one will have all the actual code,

RE: Application.cfm

2005-06-01 Thread Adrian Lynch
Not as such. But you can create a second App.cfm in a sub directory and it will use that one instead. Ade -Original Message- From: Christian Watt [mailto:[EMAIL PROTECTED] Sent: 01 June 2005 18:12 To: CF-Talk Subject: Application.cfm Is there any way to tell a page in a directory or

RE: Application.cfm

2005-06-01 Thread CollicuttL
Put a blank application.cfm in the subdirectory you want to exclude...then it won't go looking for another one to run. Lorne -Original Message- From: Christian Watt [mailto:[EMAIL PROTECTED] Sent: June 1, 2005 10:12 To: CF-Talk Subject: Application.cfm Is there any way to tell a page

Re: Application.cfm

2005-06-01 Thread Charlie Griefer
you could include an empty Application.cfm in the subdirectory in question. a CF template looks in the current directory for an Application.cfm, and if it finds one, it executes it. If not, it looks up one directory level (and continues until either it finds one or hits the root directory). But

Re: Application.cfm

2005-06-01 Thread Tony Weeg
e, doesnt an EMPTY application.cfm file barf? tony On 6/1/05, Charlie Griefer [EMAIL PROTECTED] wrote: you could include an empty Application.cfm in the subdirectory in question. a CF template looks in the current directory for an Application.cfm, and if it finds one, it executes it. If

Re: Application.cfm

2005-06-01 Thread Claude Schneegans
e, doesnt an EMPTY application.cfm file barf? Yes, it should contain at least one blank character. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED])

Re: Application.cfm

2005-06-01 Thread Charlie Griefer
ok, so in this specific Application.cfm do: cfset barf = false / :) I'm sorry, i shouldn't have said 'empty'. I meant an Application.cfm that didn't necessarily do anything other than block access to higher-level Application.cfm files. Empty in the sense of usefulness. A Zen kind of empty :)

RE: Application.cfm

2005-06-01 Thread Calvin Ward
I think so, better throw a comment in there... -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 01, 2005 2:15 PM To: CF-Talk Subject: Re: Application.cfm e, doesnt an EMPTY application.cfm file barf? tony On 6/1/05, Charlie Griefer [EMAIL

RE: Application.cfm

2005-06-01 Thread Dawson, Michael
Yeah, I use something like the following: cfset variables.bogus = cfset structDelete(variables, bogus) M!ke -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 01, 2005 1:15 PM To: CF-Talk Subject: Re: Application.cfm e, doesnt an EMPTY

RE: Application.cfm

2005-06-01 Thread Adrian Lynch
Not on 6.1 or 7 is doesn't. Ade -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 01, 2005 1:15 PM To: CF-Talk Subject: Re: Application.cfm e, doesnt an EMPTY application.cfm file barf? tony -- No virus found in this outgoing message. Checked

Re: Application.cfm

2005-06-01 Thread Claude Schneegans
ok, so in this specific Application.cfm do: Not even, a blank character is enough. The problem is only caused by a zero length file. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to

Re: Application.cfm

2005-06-01 Thread Raymond Camden
No - as the other poster said - this was fixed. It _used_ to be true that an empty file would barf, but not in the MX timeframe. On 6/1/05, Claude Schneegans [EMAIL PROTECTED] wrote: ok, so in this specific Application.cfm do: Not even, a blank character is enough. The problem is only

Re: Application.cfm

2005-06-01 Thread Claude Schneegans
It _used_ to be true that an empty file would barf Ok, so _for people still under CF 5_ use a file with at least one space... -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this

Re: Application.cfm

2005-06-01 Thread Lee Surma
OK this begs the question who would put up a blank application.cfm without putting in a comment describing why it's there? Lee ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start

RE: Application.cfm

2005-06-01 Thread Ian Skinner
:55 PM To: CF-Talk Subject: Re: Application.cfm OK this begs the question who would put up a blank application.cfm without putting in a comment describing why it's there? Lee ~| Find out how

Re: Application.cfm

2005-06-01 Thread S . Isaac Dealey
ok, so in this specific Application.cfm do: Not even, a blank character is enough. The problem is only caused by a zero length file. Although iirc it did consider a file which began on character 1 with a cf-comment and ended on the last character with the last character of the cf-comment as

RE: Application.cfm

2005-06-01 Thread S . Isaac Dealey
BloodSource www.BloodSource.org Sacramento, CA C code. C code run. Run code run. Please! - Cynthia Dunning -Original Message- From: Lee Surma [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 01, 2005 1:55 PM To: CF-Talk Subject: Re: Application.cfm OK

Re: Application.cfm

2005-06-01 Thread Claude Schneegans
who would put up a blank application.cfm without putting in a comment describing why it's there? Any lone ranger with a good memory ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to

RE: Application.cfm

2005-06-01 Thread Calvin Ward
!--- I am because I am --- -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 01, 2005 5:16 PM To: CF-Talk Subject: Re: Application.cfm who would put up a blank application.cfm without putting in a comment describing why it's there? Any lone

RE: Application.cfm issue

2005-04-27 Thread Mark Holm
the file not firing. -Original Message- From: Mark Holm [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 4:57 PM To: CF-Talk Subject: Re: Application.cfm issue This should at least tell you that the Application.cfm file is executing. No output..so I'm assuming the Application.cfm

Re: Application.cfm issue

2005-04-27 Thread Mark Holm
1) Verify that the Application.cfm file is spelled correctly YES - it is spelled correctly 2) Put some hello world text in the Application.cfm file and see if it shows up when you view /index.cfm in your browser. No go - did not work. Mark Holm  

RE: Application.cfm issue

2005-04-27 Thread Mark Holm
  I think it will work - but using CFC as a key name in the application scope just feels wrong... almost creepy. ;^) I tried that changed it to BCNUcfc Are you on unix? If so Application.cfm is case sensitive. win2003 How are you setting your app name? via the name attribute in the

RE: Application.cfm issue

2005-04-27 Thread Jim Davis
-Original Message- From: Mark Holm [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 12:45 PM To: CF-Talk Subject: Re: Application.cfm issue 1) Verify that the Application.cfm file is spelled correctly YES - it is spelled correctly 2) Put some hello world text

RE: application.cfm issue

2005-04-27 Thread Jim Davis
-Original Message- From: Mark Holm [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 1:04 PM To: CF-Talk Subject: RE: CrystalTech Users Beware/ application.cfm issue 1) Post up the relevant bits of you application.cfm file if possible - especially the parts where you set

Re: application.cfm issue

2005-04-27 Thread Cameron Childress
On 4/27/05, Jim Davis [EMAIL PROTECTED] wrote: I'm not sure if this is causing the problem - but cfapplication doesn't have an end tag (although it could be ended like cfapplication / to be XML compliant). That MIGHT be causing your problems. Seriously, there is no chance this is causing

Re: Application.cfm issue

2005-04-27 Thread Cameron Childress
Mark - The problems you are seeing are very odd and at this point I'd say it's very unlikely that it's a code problem is your hello world text didn't even show up. I would double and triple check all of your file paths and filenames and make sure you are editing the files you think you are, and

RE: application.cfm issue

2005-04-27 Thread Jim Davis
-Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 1:28 PM To: CF-Talk Subject: Re: application.cfm issue On 4/27/05, Jim Davis [EMAIL PROTECTED] wrote: I'm not sure if this is causing the problem - but cfapplication doesn't

RE: Application.cfm issue

2005-04-27 Thread Connie DeCinko
Mark, can you test this same code and setup on another site? Can you narrow it down to only this site acting up? -Original Message- From: Mark Holm [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 9:41 AM To: CF-Talk Subject: RE: Application.cfm issue OK tried

RE: application.cfm issue

2005-04-27 Thread Jim Davis
-Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 1:28 PM To: CF-Talk Subject: Re: application.cfm issue On 4/27/05, Jim Davis [EMAIL PROTECTED] wrote: I'm not sure if this is causing the problem - but cfapplication doesn't

RE: application.cfm issue

2005-04-27 Thread Connie DeCinko
: Cameron Childress [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 10:28 AM To: CF-Talk Subject: Re: application.cfm issue Seriously, there is no chance this is causing the problem. Suggesting crazy solutions to a newbie is NOT constructive to them learning a new language. -Cameron

RE: application.cfm issue

2005-04-27 Thread Connie DeCinko
Yeah, perhaps the second tag is not being seen as a closing tab but another instance of CFApplication. -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 10:19 AM To: CF-Talk Subject: RE: application.cfm issue I'm not sure if this is causing

Re: application.cfm issue

2005-04-27 Thread Cameron Childress
On 4/27/05, Jim Davis [EMAIL PROTECTED] wrote: Unless you were being sarcastic you may want to rethink this - in a quick test it is DEFINITELY causing the problem. Actually, I was being serious. I also seriously misinterpreted what you were saying. I hadn't noticed the ending /cfapplciation

RE: application.cfm issue

2005-04-27 Thread Mark Holm
Hi Guys, No I am not a newbie..and I've done work with cf 4 ,5 ,6, 6.1 and now trying to learn 7 Not sure what casued the issue.. tried rewritting the application.cfm file in about 20 diffrent ways..no go. I think it must have been some strangeness with being in a hosted enviroment as I've

Re: application.cfm issue

2005-04-27 Thread Cameron Childress
On 4/27/05, Connie DeCinko [EMAIL PROTECTED] wrote: Cameron, at this point I'd say he's desperate to try anything and at least this way we rule out another option. And I find it very condescending to say he is a newbie. How do we know that? I'm sure even Ben Forta has been stumped once or

RE: application.cfm issue

2005-04-27 Thread Jim Davis
-Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 2:08 PM To: CF-Talk Subject: Re: application.cfm issue On 4/27/05, Jim Davis [EMAIL PROTECTED] wrote: Unless you were being sarcastic you may want to rethink this - in a quick

Re: Application.cfm issue

2005-04-27 Thread Mark Holm
Hi Guys, No I am not a newbie..and I've done work with cf 4 ,5 ,6, 6.1 and now trying to learn 7 Not sure what casued the issue.. tried rewritting the application.cfm file in about 20 diffrent ways..no go. I think it must have been some strangeness with being in a hosted enviroment as I've

Re: application.cfm issue

2005-04-27 Thread Cameron Childress
On 4/27/05, Jim Davis [EMAIL PROTECTED] wrote: But still - I think you deserved the triple neener. ;^) Yup. -Cameron -- Cameron Childress Sumo Consulting Inc http://www.sumoc.com --- cell: 678.637.5072 aim: cameroncf email: [EMAIL PROTECTED]

Re: application.cfm issue

2005-04-27 Thread Mark Holm
On 4/27/05, Jim Davis wrote:   test it is DEFINITELY causing the problem. DOH! Call me the Homer Simpson of CF dev today! Yes that fixed the problem..geeze can't believe I missed that.. just a habit I have since I've been doing xhtml..I just auto create a closing tag Mark Holm  

Re: Application.cfm issue

2005-04-26 Thread Cameron Childress
This is wierd..my root Application.cfm doesn't seem to be working I'm using CFMX 7 on a IIS6/win2003 This may not be your problem, but it looks like youa re using a variable called application.cfc in your application. Since the Application.cfc file is a new feature in CFMX7, I would assume

Re: Application.cfm issue

2005-04-26 Thread Mark Holm
This is wierd..my root Application.cfm doesn't seem to be working I'm using CFMX 7 on a IIS6/win2003 This may not be your problem, but it looks like youa re using a variable called application.cfc in your application. Since the   OK so I renamed the variable like thus: cfset

Re: Application.cfm issue

2005-04-26 Thread Cameron Childress
OK so I renamed the variable like thus: [...] still no go cfdump only picks up th applicationname.. Ok, fair enough. So where is the cfapplication tag, and what does that code (and the code around it) look like? -Cameron -- Cameron Childress Sumo Consulting Inc http://www.sumoc.com ---

Re: Application.cfm issue

2005-04-26 Thread Mark Holm
This is the code in the root of the domain (BTW I'm on a shared hosting plan -crystaltech) cfapplication name=BCNU-1999-2001-2010 sessionmanagement=yes applicationtimeout=#CreateTimeSpan(0,0,19,0)# sessiontimeout=#CreateTimeSpan(0,0,19,0)#   !--- Set custom global error handling pages for

RE: Application.cfm issue

2005-04-26 Thread Connie DeCinko
Try it without the dashes. I had to take them out of my names due to CFMX7 on CrystalTech not liking them. -Original Message- From: Mark Holm [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 4:24 PM To: CF-Talk Subject: Re: Application.cfm issue This is the code in the root

Re: Application.cfm issue

2005-04-26 Thread Cameron Childress
On 4/26/05, Mark Holm [EMAIL PROTECTED] wrote: This is the code in the root of the domain [...] Nice unique app name. When you say in the root of the domain, I'm not really sure what you mean by that. Let's break this down to it's most simple components, an Application.cfm file and a file to

RE: Application.cfm issue

2005-04-26 Thread Mark Holm
them out of my names due to CFMX7 on CrystalTech not liking them. -Original Message- From: Mark Holm [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 4:24 PM To: CF-Talk Subject: Re: Application.cfm issue This is the code in the root of the domain (BTW I'm on a shared hosting plan

Re: Application.cfm issue

2005-04-26 Thread Mark Holm
  On 4/26/05, Mark Holm wrote: This is the code in the root of the domain [...] Nice unique app name. When you say in the root of the domain, I'm not really sure what you mean by that. Let's break this down to it's most simple components, an Application.cfm file and a file to run (ie:

Re: Application.cfm issue

2005-04-26 Thread Cameron Childress
No. I have a Application.cfm file in a subfolder..however I've done this before on 6.1 with no issues So, to be clear, Application.cfm is in a subfolder of index.cfm like so: /index.cfm /subfolder/Application.cfm In this setup it will not, and never would have worked under any version of CF

Re: Application.cfm issue

2005-04-26 Thread Mark Holm
These are the paths: /index.cfm - does not pick up variables set in the root Application.cfm /Application.cfm - variables set here are not being picked up at this level or anywhere for that matter. /folder/index.cfm -- variables set in this level application.cfm file work fine

RE: Application.cfm issue

2005-04-26 Thread Connie DeCinko
: Re: Application.cfm issue This should at least tell you that the Application.cfm file is executing. No output..so I'm assuming the Application.cfm file is NOT executing  Mark Holm ~| Discover CFTicket - The leading

Re: Application.cfm issue

2005-04-26 Thread Cameron Childress
On 4/26/05, Mark Holm [EMAIL PROTECTED] wrote: These are the paths: /index.cfm - does not pick up variables set in the root Application.cfm /Application.cfm - variables set here are not being picked up at this level or anywhere for that matter. I would focus on these two initially to

Re: Application.cfm issue

2005-04-26 Thread Yves Arsenault
I may be late in the thread... But if it is on a Linux platform, make sure the 'A' in Application is a capital letter. Yves On 4/26/05, Cameron Childress [EMAIL PROTECTED] wrote: On 4/26/05, Mark Holm [EMAIL PROTECTED] wrote: These are the paths: /index.cfm - does not pick up variables

RE: Application.cfm issue

2005-04-26 Thread Jim Davis
Just some thoughts... I think it will work - but using CFC as a key name in the application scope just feels wrong... almost creepy. ;^) Are you on unix? If so Application.cfm is case sensitive. How are you setting your app name? For what it's worth you could check your startup state a lot

RE: Application.cfm and Virtual Directories

2005-03-09 Thread Katz, Dov B \(IT\)
I'm pretty sure application.cfm propagation is only with physical directories... Not iis virtual ones... -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 09, 2005 12:08 PM To: CF-Talk Subject: Application.cfm and Virtual Directories Is there

RE: Application.cfm and Virtual Directories

2005-03-09 Thread Dave Watts
Is there information on how an Application.cfm file behaves with virtual directories? If one has a IIS virtual directory bar defined for a website foo, then it is accessed something like this http://foo/bar/myTemplate.cfm;. Should or should not an Application.cfm in the root directory

Re: Application.cfm update question

2004-10-29 Thread Barney Boisvert
Do you have trusted cache turned on? If it's on, that's the expected behaviour. cheers, barneyb On Fri, 29 Oct 2004 13:45:44 -0400, Stephen Hait [EMAIL PROTECTED] wrote: Running CF5 or CFMX6.1, if I make a change to Application.cfm and update that file on the server, the change doesn't seem

Re: Application.cfm update question

2004-10-29 Thread Lawrence Ng
could be session issue. you shouldn't need to do anything chack your settings in your administrator for cf variables and such. ~| This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable

Re: Application.cfm update question

2004-10-29 Thread Jordan Michaels
Changes to the Application.cfm file should take effect immediately - even if you don't restart CFMX. This is because (unless you're runniing pre-compiled cfm files) all CFM pages are compiled at runtime. So, if you make a change to one, that change should take effect the next time you hit the

Re: Application.cfm update question

2004-10-29 Thread Dave Francis
Are you by any chance branching around the changes? ie. cfif not isDefined('application.xxx') ..changes. /cfif - Original Message - From: Stephen Hait [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, October 29, 2004 1:45 PM Subject: Application.cfm update

Re: Application.cfm update question

2004-10-29 Thread Charlie Griefer
what kind of changes are there between the two files? issue might be that the application vars from the original are still valid. you can force the application scope to be cleared with a cfset structClear(application). if you add that little line of code to the new Application.cfm the first

RE: Application.cfm update question

2004-10-29 Thread Burns, John D
Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Friday, October 29, 2004 2:31 PM To: CF-Talk Subject: Re: Application.cfm update question what kind of changes are there between the two files? issue might be that the application vars from the original are still valid. you can force

Re: application.cfm and headers

2004-10-18 Thread Will Tomlinson
I thought anything to do with presentation or look and feel was supposed to be a no no in an application.cfm file. CF_Will [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: application.cfm and headers

2004-10-18 Thread S . Isaac Dealey
, but aimed at two slightly different audiences. cheers, barneyb On Sun, 17 Oct 2004 17:02:53 -0400, Phillip Perry [EMAIL PROTECTED] wrote: -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Sunday, October 17, 2004 4:56 PM To: CF-Talk Subject: Re: application.cfm

Re: application.cfm and headers

2004-10-18 Thread S . Isaac Dealey
I thought anything to do with presentation or look and feel was supposed to be a no no in an application.cfm file. CF_Will As a rule of thumb that's my opinion. s. isaac dealey954.927.5117 new epoch : isn't it time for a change? add features without fixtures with the onTap open source

Re: application.cfm and headers

2004-10-18 Thread s . isaac dealey
, but aimed at two slightly different audiences. cheers, barneyb On Sun, 17 Oct 2004 17:02:53 -0400, Phillip Perry [EMAIL PROTECTED] wrote: -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Sunday, October 17, 2004 4:56 PM To: CF-Talk Subject: Re: application.cfm

Re: application.cfm and headers

2004-10-17 Thread Claude Schneegans
Is there anything else I can do? Put the template in another subdirectory having its own Application.cfm in which you do whatever you want, including NOT showing the headers. -- ___ REUSE CODE! Use custom tags; See

Re: application.cfm and headers

2004-10-17 Thread Barney Boisvert
You could set an extra URL variable on your popup URL that indicates not to include the header (or, more likely, include a 'plain' header). However, using Application.cfm and OnRequestEnd.cfm for anything except application logic is generally a bad idea. A much better route is to either just put

RE: application.cfm and headers

2004-10-17 Thread Phillip Perry
-Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Sunday, October 17, 2004 4:56 PM To: CF-Talk Subject: Re: application.cfm and headers or perhaps use something like Fusebox I downloaded fusebox the other day to see what it was about and my head almost exploded

RE: application.cfm and headers

2004-10-17 Thread Ewok
cfif Not FindNoCase(directoryname, cgi.script_name) cfinclude template=header.cfm /cfif Where “directoryname” is the directory you DON’T want the header included in _ From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Sunday, October 17, 2004 4:47 PM To: CF-Talk Subject:

RE: application.cfm and headers

2004-10-17 Thread Matthew Walker
a file to load at the top of the page and a file for the bottom of the page, e.g. normal_head.cfm normal_foot.cfm popup_head.cfm popup_foot.cfm _ From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Monday, 18 October 2004 10:03 a.m. To: CF-Talk Subject: RE: application.cfm and headers

Re: application.cfm and headers

2004-10-17 Thread Barney Boisvert
On Sun, 17 Oct 2004 17:02:53 -0400, Phillip Perry [EMAIL PROTECTED] wrote: -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Sunday, October 17, 2004 4:56 PM To: CF-Talk Subject: Re: application.cfm and headers or perhaps use something like Fusebox I downloaded

Re: application.cfm and headers

2004-10-17 Thread Russell Patterson
Ha! Ha! Ha!I understand that! Russell - Original Message - From: Phillip Perry To: CF-Talk Sent: Sunday, October 17, 2004 4:02 PM Subject: RE: application.cfm and headers -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Sunday, October 17, 2004 4:56 PM

Re: Application.cfm vs. application.cfm

2004-04-15 Thread Doug White
If your host is a Linux environmentApplication.cfm must start with a capital A as does OnRequestEnd.cfm.The Linux environment is case sensitive - On a Windows environment, it is not case sensitive. and will work either way. == We can get rid of spam on your

RE: Application.cfm vs. application.cfm

2004-04-15 Thread Pascal Peters
On Unix, Application.cfm has to be with a capital A Your host is probably using a nix machine -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: donderdag 15 april 2004 14:02 To: CF-Talk Subject: Application.cfm vs. application.cfm hey everyone. i just

RE: application.cfm and session variable

2003-12-05 Thread Raymond Camden
Now when I refer to this session variable in another file, I get an error, it says the session variable is not defined. I thought whenever a .cfm file is called, the CF Server does a search for the application.cfm file and initializes the application and all scoped variables. I also added

Re: application.cfm and session variable

2003-12-05 Thread Randell B Adkins
On *nix, you should (well any OS) make sure the application.cfm has a Capital A: Application.cfm [EMAIL PROTECTED] 12/05/03 09:19AM I am having a strange problem. I created an application.cfm file on the webroot and have declared few session variables. CFAPPLICATION NAME=NApp

RE: application.cfm and session variable

2003-12-05 Thread Tony Weeg
-Talk Subject: Re: application.cfm and session variable On *nix, you should (well any OS) make sure the application.cfm has a Capital A: Application.cfm [EMAIL PROTECTED] 12/05/03 09:19AM I am having a strange problem. I created an application.cfm file on the webroot and have declared few session

RE: application.cfm and session variable

2003-12-05 Thread Randell B Adkins
A that is. ...tony tony weeg senior web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original Message- From: Randell B Adkins [mailto:[EMAIL PROTECTED] Sent: Friday, December 05, 2003 9:34 AM To: CF-Talk Subject: Re: application.cfm and session variable On *nix

RE: application.cfm and session variable

2003-12-05 Thread d.a.collie
Tony wrote: doesn't matter on windows servers. Capital A that is. Should always have a capital regardless of platform... wot if you moved it... should be shouting about best practices on the list. Your app may get moved to a *nix box later and then your application.cfm would break -- -dc

RE: application.cfm and session variable

2003-12-05 Thread Tony Weeg
] 410.548.2337 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, December 05, 2003 10:00 AM To: CF-Talk Subject: RE: application.cfm and session variable Tony wrote: doesn't matter on windows servers. Capital A that is. Should always have a capital regardless

RE: application.cfm and session variable

2003-12-05 Thread d.a.collie
Tony wrote: not as long as I have control over them ... no reason to, and yes, it's a best practice, so why not... but just to let those people out there know that's its not NECESSARY. Hehe... no worries, it's too late on Fri arvo here to get into a flame war aboot this Have a good one

RE: application.cfm and session variable

2003-12-05 Thread Tony Weeg
cheers mate, enjoy your Friday... ...tony tony weeg senior web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, December 05, 2003 10:09 AM To: CF-Talk Subject: RE

Re: Application.cfm maybe

2003-12-05 Thread Jochem van Dieten
Mickael wrote: I have a site that would like to create certain content for search engines then have certain content in flash.My question is, is there a way to create a page and link it to a search engine, have the link appear on the search engine.But have some code at the bottom of the page

RE: application.cfm and session variable

2003-12-05 Thread Hassan Arteaga Rodriguez
Use before set the variable session.doesUserHavePermissionsthe function IsDefined or define it with a cfparam tag Regards, __ MSc. Hassan Arteaga Rodrguez Microsoft Certified System Engineer. DIGI- Grupo de Desarrollo COPEXTEL, S.A. -Original Message- From: cf coder [mailto:[EMAIL

Re: Application.cfm maybe

2003-12-05 Thread Mickael
Hi Jochem, Does object work only for flash pages or can I use this to migrate visitors from older pages to new non flash pages? - Original Message - From: Jochem van Dieten To: CF-Talk Sent: Friday, December 05, 2003 10:37 AM Subject: Re: Application.cfm maybe Mickael wrote: I have

Re: Application.cfm maybe

2003-12-05 Thread Jochem van Dieten
Mickael wrote: Does object work only for flash pages or can I use this to migrate visitors from older pages to new non flash pages? Since I don't understand the question, I will let you figure it out yourself: http://www.w3.org/TR/html401/struct/objects.html Jochem -- When you don't want

RE: Application.cfm and Fusebox

2003-12-01 Thread John Beynon
You'll find that most people will use application.cfm to catch direct access to files other than index.cfm and redirect them to index.cfm in that event. You can still can use cfapplication in the fbx_settings file though... Jb. -Original Message- From: Mickael [mailto:[EMAIL PROTECTED]

Re: Application.cfm and Fusebox

2003-12-01 Thread Mickael
Sent: Monday, December 01, 2003 10:48 AM Subject: RE: Application.cfm and Fusebox You'll find that most people will use application.cfm to catch direct access to files other than index.cfm and redirect them to index.cfm in that event. You can still can use cfapplication in the fbx_settings file

RE: Application.cfm and Fusebox

2003-12-01 Thread John Beynon
Subject: Re: Application.cfm and Fusebox Thanks John, This was initiated by me trying to securing certain circuits and access to them, I have not been able to successfully secure only one circuit only the whole app.Can you point me in the right direction on that? Thanks again - Original Message

RE: Application.cfm and Fusebox

2003-12-01 Thread Smith, Matthew P -CONT(CSC)
, Object Oriented Naval Education Training Professional Development Technology Center (NETPDTC) (850)452-1001 ext. 1245 [EMAIL PROTECTED] -Original Message- From: Mickael [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2003 10:14 AM To: CF-Talk Subject: Re: Application.cfm

Re: RE: Application.cfm and Fusebox

2003-12-01 Thread ksuh
application.cfm.And does that mean that I can still use the cf_applicationtag? It is a common misperception that the cfapplication tag only works in Application.cfm.In fact, you can use it anywhere. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: RE: Application.cfm and Fusebox

2003-12-01 Thread Dwayne Cole
application.cfm.And does that mean that I can still use the cf_applicationtag? It is a common misperception that the cfapplication tag only works in Application.cfm.In fact, you can use it anywhere. Does CF still look for an application.cfm page to process? [Todays Threads] [This Message]

RE: RE: Application.cfm and Fusebox

2003-12-01 Thread Tony Weeg
ALWAYS! ...tony tony weeg senior web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2003 12:11 PM To: CF-Talk Subject: Re: RE: Application.cfm and Fusebox

RE: RE: Application.cfm and Fusebox

2003-12-01 Thread Tangorre, Michael
Always... all the way up to the root of your drive. -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2003 12:11 PM To: CF-Talk Subject: Re: RE: Application.cfm and Fusebox application.cfm.And does that mean that I can still use

Re: RE: Application.cfm and Fusebox

2003-12-01 Thread Charlie Griefer
From: Dwayne Cole To: CF-Talk Sent: Monday, December 01, 2003 10:11 AM Subject: Re: RE: Application.cfm and Fusebox application.cfm.And does that mean that I can still use the cf_applicationtag? It is a common misperception that the cfapplication tag only works in Application.cfm.In

Re: RE: Application.cfm and Fusebox

2003-12-01 Thread ksuh
In Fusebox 3, the cfapplication tag is normally placed in the fbx_settings file. - Original Message - From: Charlie Griefer [EMAIL PROTECTED] Date: Monday, December 1, 2003 10:24 am Subject: Re: RE: Application.cfm and Fusebox From: Dwayne Cole To: CF-Talk Sent: Monday

RE: application.cfm

2003-10-07 Thread Bushy
).There are limitations - you read the docs on this, but it may be the way to go. Jim Davis -Original Message- From: Bushy [mailto:[EMAIL PROTECTED] Sent: Monday, October 06, 2003 11:49 AM To: CF-Talk Subject: re: application.cfm HI, I need to load my database fields into session and cookie variables

<    1   2   3   4   5   >