RE: Missing Template Handler

2013-02-20 Thread Robert Harrison
Does anyone have the missing template handler working for IIS7 or above? We have all missing pages except .cfm working. Any thoughts. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  

RE: Missing Template Handler : RESOLVED

2013-02-20 Thread Robert Harrison
Found a solution that overrides the problems with IIS not serving up the missing template handler from the CF administrator. Put this in the application.cfc file: cffunction name=onMissingTemplate returnType=boolean output=false cfinclude template=404.cfm

RE: Missing Template Handler

2013-02-20 Thread Russ Michaels
Yes we have it working here. Are you sure there are no errors ipccurring n the template? Iis7 will not show cf errors by default. Regards Russ Michaels www.michaels.me.uk www.cfmldeveloper.com - Free CFML hosting for developers www.cfsearch.com - CF search engine On Feb 20, 2013 5:21 PM, Robert

Re: Missing Template Handler and Application.cfc

2009-03-26 Thread Charlie Griefer
On Thu, Mar 26, 2009 at 10:31 AM, Ian Skinner h...@ilsweb.com wrote: I take it that a CFML template defined to be used as a missing template hander does not process Application.cfc as a normal template does. Does anybody no the scoop about this? Well, according to the docs, you're

Re: Missing Template Handler and Application.cfc

2009-03-26 Thread Ian Skinner
Charlie Griefer wrote: On Thu, Mar 26, 2009 at 10:31 AM, Ian Skinner h...@ilsweb.com wrote: I take it that a CFML template defined to be used as a missing template hander does not process Application.cfc as a normal template does. Does anybody no the scoop about this? Well,

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 relative

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 working.

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 Template

Re: Missing Template Handler is missing

2008-08-08 Thread Ian Skinner
Adam Churvis wrote: Missing Template Handler is missing... Doesn't that just have a sort of Zen ring to it? Respectfully, Adam Phillip Churvis President Productivity Enhancement Zen or not, it is also very frustrating that it does not work. To be clear and up front, I am talking about

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.

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

2008-08-08 Thread Tom Chiverton
On Friday 08 Aug 2008, Ian Skinner wrote: /root/something/else/htdocs/errors/404error.cfm -- Completely ignored! CF serves up its default 404 error message. Could there be an error in the 404 CFML page ? What if you replace it with just 'foo' or 'cfoutput#now()#/cfoutput' ? -- Tom Chiverton

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 template that is used as the Missing

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 had

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 web root so it would not matter which

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. Does

Re: Missing Template Handler is missing

2008-08-07 Thread Kevin Stone
Have you tried everything mentioned at http://kb.adobe.com/selfservice/viewContent.do?externalId=95ee04fb ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Missing Template Handler is missing

2008-08-07 Thread Ian Skinner
Kevin Stone wrote: Have you tried everything mentioned at http://kb.adobe.com/selfservice/viewContent.do?externalId=95ee04fb Well no, because when I looked at the article and saw that it has a Windows and IIS focus I did not think it applied to my Unix and Apache system. Does it?

Re: Missing Template Handler is missing

2008-08-07 Thread Kevin Stone
I thought that there was a link at the bottom of the page that addresses general things to try via Coldfusion Admin. Sorry if I was incorrect ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

Re: Missing Template Handler is missing

2008-08-07 Thread Ian Skinner
Kevin Stone wrote: I thought that there was a link at the bottom of the page that addresses general things to try via Coldfusion Admin. Sorry if I was incorrect. Well that did finally get me to what I need to know. It was looking for a file system path not an URI path. Is this something

Re: Missing Template Handler is missing

2008-08-07 Thread Kevin Stone
Yea, unless the unix version is different, i think CF 5.0 and earlier require an absolute path while MX and 8 use a relative path. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the

RE: Missing Template Handler is missing

2008-08-07 Thread Adam Churvis
Missing Template Handler is missing... Doesn't that just have a sort of Zen ring to it? Respectfully, Adam Phillip Churvis President Productivity Enhancement ~| Adobe® ColdFusion® 8 software 8 is the most important and

RE: Missing Template Handler Strangeness....

2008-02-07 Thread Dave Watts
I have a custom missing template set up, but something either in the application or with CF7 keeps hitting it. I know this because I have the missing template write to a CF log file. Everytime I refresh the logs, this log file keeps growing. Almost like something within the application

Re: Missing template handler issues

2008-02-05 Thread Azadi Saryev
the standard cf missing template (file not found...) warning you see: is it for the requested page or for some template cfinluded in your missing template handler page? just a thought... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Don wrote: I would like to add to this that we

Re: Missing template handler issues

2008-02-05 Thread Don
I would like to add to this that we do NOT want to see the default ( missing template information ). It seems to append this to the custom 'missing template' page I've specified. I'm not sure why since CF knows that we want a customized missing template handler.

Re: Missing template handler issues

2008-02-05 Thread Don
That's a good thought, but I did double check this by removing ( commenting ) all included files to see if that might be causing the problem, the same thing seems to happen.There at the end of our CUSTOM missing template page is the DEFAULT CF Missing Template page. Yah the ( file not

RE: Missing Template Handler

2006-10-10 Thread Ben Nadel
I believe that the missing template handler can handle a lot of ColdFusion tag code, but it cannot throw back to the original site... Meaning, you can run CF on the template (ie. CFMail) but you cannot have it in the given site template... Unless you do some snazzy include logic perhaps. But, I

Re: Missing Template Handler

2006-10-10 Thread Teddy Payne
What type of missing template handler? Are we talking about cfinclude? 404? Teddy On 10/10/06, Ian Skinner [EMAIL PROTECTED] wrote: I've tried to search the documentation, but I have not found what can one actually do in a template designated as a missing template handler in the CF

RE: Missing Template Handler

2006-10-10 Thread PETER SHEATS
I think you are referring to the page that you specify in the CF Admin Settings page for Missing Template Handler. I can't remember if I found anyplace that specified exactly what was allowed, but what I have in mine is the following code, which works great. cfmail to= from= subject=Template

Re: Missing Template Handler

2006-10-10 Thread Teddy Payne
I believe if the missing template handler throws an error then it hits the sitewide error handler. It may be good to make these homogenous in look and feel. Teddy On 10/10/06, Ben Nadel [EMAIL PROTECTED] wrote: I believe that the missing template handler can handle a lot of ColdFusion tag

RE: missing template handler

2005-09-19 Thread Dave Watts
I created a mapping that points to the directory where my page is and then set the page via /mapping/page.cfm and that worked. Any idea why it needs a two step process in mx7 but not in 5.0? If I recall correctly, in CF 5 a filesystem path was used. In CFMX, the path depends on a mapping,

Re: missing template handler

2005-09-18 Thread dan martin
I am trying to setup my 404 handler in CFMX 7 and cannot seem to get it to take. The administrator keeps saying the file does not exist. It says to specify the relative path to the template. What does that mean? I tried putting the file in the root and just specifying the page, putting in

Re: Missing template handler (CFMX patch)

2003-09-24 Thread Chris Norloff
Have you tried entering different paths for the missing template handler in the CFadmin page? I ask because the missing template handler path is based off the context root, but mappings are specified from the system root. I'm always forgetting which is which. Doesn't make much sense, but

Re: Missing Template Handler in CFMX not working

2003-04-03 Thread Chris Norloff
My Missing Template Handler works okay (CFMX for J2EE (Update 3), JRun 4, Solaris 8). I notice that there MUST be a mapping for the Missing Template Handler entry to take. The mapping points to an absolute address (complete path name). The Missing Template Handler entry begins with the mapping

RE: Missing Template Handler in CFMX not working

2003-04-03 Thread Cameron Childress
To: CF-Talk Subject: Re: Missing Template Handler in CFMX not working My Missing Template Handler works okay (CFMX for J2EE (Update 3), JRun 4, Solaris 8). I notice that there MUST be a mapping for the Missing Template Handler entry to take. The mapping points to an absolute address (complete path

RE: Missing Template Handler in CFMX not working

2003-04-03 Thread Chris Kief
Cameron, Took a few tries for me to get this working as well...but here is what I came up with: - Place 404.cfm in the directory where / is mapped to. On my server / is mapped to: /opt/coldfusionmx/wwwroot. - In the admin, use the following path for the template: /404.cfm That should do it for

RE: Missing Template Handler...

2002-11-16 Thread Lee Fuller
by the Custom Errors setting in IIS. | -Original Message- | From: Brook Davies [mailto:[EMAIL PROTECTED]] | Sent: Friday, November 15, 2002 11:53 PM | To: CF-Talk | Subject: Re: Missing Template Handler... | | | Lee, | | This is really messed up. I had the same problem. Solved

RE: Missing Template Handler...

2002-11-16 Thread Brook Davies
Message- | From: Brook Davies [mailto:[EMAIL PROTECTED]] | Sent: Friday, November 15, 2002 11:53 PM | To: CF-Talk | Subject: Re: Missing Template Handler... | | | Lee, | | This is really messed up. I had the same problem. Solved it by: | | 1. Adding a mapping in the cfadmin for a /errortemplates

RE: Missing Template Handler...

2002-11-16 Thread Lee Fuller
first. | -Original Message- | From: Brook Davies [mailto:[EMAIL PROTECTED]] | Sent: Saturday, November 16, 2002 12:07 AM | To: CF-Talk | Subject: RE: Missing Template Handler... | | | Ohh, its the default IIS website! No wonder. I tried putting a file | relative to the wwwroot

404 Error Handling Code (Was: RE: Missing Template Handler)

2002-11-16 Thread Lee Fuller
Ok.. So now I've found that my previous code would not work for sub-dir's.. So I rewrote it... Use as follows: - Place the code below into a 404.cfm file, located in the wwwroot of the default site on the IIS5/CFMX server. - Set the Missing Template Handler in CFMX to /404.cfm - Your clients can

Re: Missing Template Handler...

2002-11-15 Thread Brook Davies
Lee, This is really messed up. I had the same problem. Solved it by: 1. Adding a mapping in the cfadmin for a /errortemplates/ path and then used that path when asked. 2. I still got the error that the template did not exist - this is a bug, try it - it should work Brook At 11:47 PM