Re: Missing Template Handler is missing part Duex

2008-08-08 Thread Tom Chiverton
On Thursday 07 Aug 2008, Ian Skinner wrote: > into the ColdFusion administrator and replaced the > HTML file path '/rootDir/subDir/subDir/htdocs/errors/404error.htm' with > the corresponding CFML path > '/rootDir/subDir/subDir/htdocs/errors/404error.cfm' it stop working. Here, the path is relativ

Re: Missing Template Handler is missing part Duex

2008-08-08 Thread Ian Skinner
Tom Chiverton wrote: > On Thursday 07 Aug 2008, Ian Skinner wrote: > >> into the ColdFusion administrator and replaced the >> HTML file path '/rootDir/subDir/subDir/htdocs/errors/404error.htm' with >> the corresponding CFML path >> '/rootDir/subDir/subDir/htdocs/errors/404error.cfm' it stop wor

RE: Missing Template Handler is missing part Duex

2008-08-08 Thread Dawson, Michael
Are you certain that CF can "see" that .cfm file? Can you actually execute it? Do you have the correct CF mapping that allows it to resolve? mike -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2008 5:00 PM To: CF-Talk Subject: Missing Templat

Re: Missing Template Handler is missing part Duex

2008-08-08 Thread Ian Skinner
Dawson, Michael wrote: > Are you certain that CF can "see" that .cfm file? Can you actually > execute it? Do you have the correct CF mapping that allows it to > resolve? > > mike Yes I believe that CF can see the file, I can directly browse to it and it works that way. http://www.cdpr.ca.gov/e

Re: Missing Template Handler is missing part Duex

2008-08-08 Thread Ian Skinner
Ok so what is wrong with using expandPath() in a 4.5 ColdFusion template that is used as the Missing Template handler? That is the source of my problem. When the 404error.cfm file is called directly in a browser the expandPath() function works properly and resolves the absolute path I need to

RE: Missing Template Handler is missing part Duex

2008-08-08 Thread Jim Davis
> -Original Message- > From: Ian Skinner [mailto:[EMAIL PROTECTED] > Sent: Friday, August 08, 2008 10:20 AM > To: CF-Talk > Subject: Re: Missing Template Handler is missing part Duex > > Ok so what is wrong with using expandPath() in a 4.5 ColdFusion > templa

Re: Missing Template Handler is missing part Duex

2008-08-08 Thread Ian Skinner
Jim Davis wrote: > I honestly can't remember or find if the missing template handler was > restricted by the same rules... but I have a vague recollection that it was. > > Jim Davis Nope all the other CFML works just fine in the Missing Template Handler. I was concerned about the same thing and

RE: Missing Template Handler is missing part Duex

2008-08-08 Thread Jim Davis
> -Original Message- > From: Ian Skinner [mailto:[EMAIL PROTECTED] > Sent: Friday, August 08, 2008 11:26 AM > To: CF-Talk > Subject: Re: Missing Template Handler is missing part Duex > > I had originally used the expandPath() function to dynamically get the >

Re: Missing Template Handler is missing part Duex

2008-08-08 Thread Ian Skinner
Jim Davis wrote: > We had a similar situation (dev, int, qa, dr and prod servers with slightly > different settings). We ended up adding environment variables to the boxes > with the different information (paths, names, etc) and using the CFREGISTRY > tag to fetch the values. Interesting idea. D