Missing Template Handler

2013-02-20 Thread Robert Harrison
CF Missing Template Handler We have a new site running on IIS7.5. We have the 404 working for all pages except .cfm pages. We have the admin set to use the missing template handler, but it's not working. We're getting a blank page. Any thoughts... works fine on our IIS6 sites. Thanks

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  Hauppauge

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
Harrison rob...@austin-williams.com wrote: 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

Re: Strange errors in Missing Template Handler

2011-10-26 Thread Dave Watts
However - if I go and break the cfml in notfound.cfm: You've reached notfound.cfm/cfoutput And call the same file (www.site.com/nothere.cfm) I get an unhandled 404-error from the CF server - and not a 500-error like I would expect. Have you ever been a victim of this? And if so - how did

Strange errors in Missing Template Handler

2011-10-25 Thread Michael Christensen
Here's a bit of a conundrum we've been wrestling with a the office. We have the Missing Template Handler set on our CF server - let's say it points to /notfound.cfm In notfound.cfm we have the following code: cfoutputYou've reached notfound.cfm/cfoutput If I call a site on the server

Missing Template Handler and Application.cfc

2009-03-26 Thread Ian Skinner
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? ~| Adobe® ColdFusion® 8 software 8 is the most

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
that does a lot of work that ultimately provide a good deal of the look and feel for your site. I was a bit surprised when I ran a 404error.cfm as a missing template handler that it did not include any of this. I had to manually add and call the ca_templates.CFC that is responsible

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
Handler is missing part Duex Ok, I though I found out how to input a missing template handler into our aged 4.5 Unix ColdFusion server. I was able to have it server up the custom 404error.htm file developed by our web department. And this worked, sort of. The problem was that this HTML file

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
/404error.cfm If I put the 404error.htm file that is in the same directory into the missing template handler, it is found, but the !-- include virtural... -- directories do not work, I presume because ColdFusion 4.5 is processing the file and does not understand them. And just to be weirder

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

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

Missing Template Handler is missing

2008-08-07 Thread Ian Skinner
I'm trying to configure the Missing Template Handler on an old CF4.5 Unix based server. Our web shop has created a custom 404 incorporating the look and feel of our site. It's path is simply /errors/404error.htm. The apache web server has been properly configured to use this for static

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

Missing Template Handler is missing part Duex

2008-08-07 Thread Ian Skinner
Ok, I though I found out how to input a missing template handler into our aged 4.5 Unix ColdFusion server. I was able to have it server up the custom 404error.htm file developed by our web department. And this worked, sort of. The problem was that this HTML file makes use of Apache

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

Missing Template Handler Strangeness....

2008-02-07 Thread Don
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 keep

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

Missing Template Handler problems.

2008-02-05 Thread Dan
Added the template to Settings 'Missing template handler' -- It does call up my template but also still includes the default Coldfusion. Error Occurred While Processing Request File not found: Message. Also made the following changes to IIS as described here: http://kb.adobe.com/selfservice

Missing template handler issues

2008-02-05 Thread Don
Added the template to Settings 'Missing template handler' -- It does call up my template but also still includes the default Coldfusion Missing template visuals. Error Occurred While Processing Request File not found: Message. Also made the following changes to IIS as described here: http

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
not found ) warning is for the page I requested that doesn't exist. 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

Re: How do I bypass the missing template handler?

2007-11-05 Thread Phill B
the missing template handler that is set up in CF8. What is them best way to go about this? Thanks -- Phil ~| Enterprise web applications, build robust, secure scalable apps today - Try it now ColdFusion Today ColdFusion 8 beta

RE: How do I bypass the missing template handler?

2007-11-01 Thread Paul Sizemore
Can you use ISAPI Rewrite at http://www.helicontech.com/ ? We've got it running on IIS. Paul -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 30, 2007 11:05 AM To: CF-Talk Subject: How do I bypass the missing template handler? I have a site that needs

How do I bypass the missing template handler?

2007-10-30 Thread Phill B
I have a site that needs to bypass the missing template handler that is set up in CF8. What is them best way to go about this? Thanks -- Phil ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from

RE: How do I bypass the missing template handler?

2007-10-30 Thread Russ
Use apache's mod_rewrite and redirect all the missing templates elsewhere. Russ -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 30, 2007 11:05 AM To: CF-Talk Subject: How do I bypass the missing template handler? I have a site that needs

Re: How do I bypass the missing template handler?

2007-10-30 Thread Phill B
, 2007 11:05 AM To: CF-Talk Subject: How do I bypass the missing template handler? I have a site that needs to bypass the missing template handler that is set up in CF8. What is them best way to go about this? Thanks -- Phil

RE: How do I bypass the missing template handler?

2007-10-30 Thread Bobby Hartsfield
application.cfm. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 30, 2007 11:05 AM To: CF-Talk Subject: How do I bypass the missing template handler? I have a site that needs

RE: How do I bypass the missing template handler?

2007-10-30 Thread Ben Nadel
Help? www.bennadel.com/ask-ben/ -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 30, 2007 12:01 PM To: CF-Talk Subject: Re: How do I bypass the missing template handler? D'Oh! I should have said this is on a Win2k3 IIS6 server. Sorry On 10/30/07, Russ

Re: Can the server-wide missing template handler be overridden?

2007-08-31 Thread James Holmes
http://www.cfquickdocs.com/cf8/#onMissingTemplate On 8/31/07, Jim McAtee [EMAIL PROTECTED] wrote: I'm moving a couple dozen web sites from a CF5 server to a new CF8 Standard server. In setting up the server-wide missing error handler, CF8 wants a relative path. Relative to -what- it doesn't

Can the server-wide missing template handler be overridden?

2007-08-30 Thread Jim McAtee
I'm moving a couple dozen web sites from a CF5 server to a new CF8 Standard server. In setting up the server-wide missing error handler, CF8 wants a relative path. Relative to -what- it doesn't say, and since it checks for the existance of the file in the CF Adminsitrator and throws an error

Missing template handler not firing with a query string

2007-01-18 Thread John Blayter
I have found a weird issue with my production environment. The missing template hander is not firing when there is a query string in the URL. It works when I hit http://mysite.com/oldfolder/nothingHere.cfm but throws a CF File not found error when I hit the

Missing Template Handler

2006-10-10 Thread Ian Skinner
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 administrator? What information, if any, is passed to the template? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org

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,

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 the

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: CFMX 6.1 - Missing Template Handler

2005-01-20 Thread Thomas Chiverton
On Thursday 20 Jan 2005 01:43 am, Andrew Tyrone wrote: handler IS NOT relative to the web root as the docs say. ... You cannot use relative paths as in ../folder/file.cfm. It is relative to the web root. You can't go 'up' past the root of the web root, which is why your example fails. --

RE: CFMX 6.1 - Missing Template Handler

2005-01-20 Thread Andrew Tyrone
Tom, Okay, I'll concede that the first example is bad. But, relative to the webroot means if I have my 404 page at http://www.mysite.com/404.cfm, using /404.cfm in the missing template handler field should work (as in my second example I gave in the original post), but it doesn't. If you can

RE: CFMX 6.1 - Missing Template Handler

2005-01-20 Thread Andrew Tyrone
-Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 9:17 AM To: CF-Talk Subject: Re: CFMX 6.1 - Missing Template Handler On Thursday 20 Jan 2005 01:43 am, Andrew Tyrone wrote: handler IS NOT relative to the web root as the docs

Re: CFMX 6.1 - Missing Template Handler

2005-01-19 Thread John Beynon
did you see http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=95ee04fbpss=rss_coldfusion_95ee04fb jb. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

RE: CFMX 6.1 - Missing Template Handler

2005-01-19 Thread Andrew Tyrone
John, Yes, thanks. As far as I've tested on IIS 5, checking the check that file exists checkbox doesn't do ANYTHING. IIS still passes missing .cfm files to CFMX regardless of that setting. Sometimes I wonder if even Macromedia knows how the missing template handler works. Andy -Original

RE: CFMX 6.1 - Missing Template Handler

2005-01-19 Thread Dave Watts
Yes, thanks. As far as I've tested on IIS 5, checking the check that file exists checkbox doesn't do ANYTHING. IIS still passes missing .cfm files to CFMX regardless of that setting. Sometimes I wonder if even Macromedia knows how the missing template handler works. By default, that's

RE: CFMX 6.1 - Missing Template Handler

2005-01-19 Thread Andrew Tyrone
in the missing template handler, but not .cfc or .jsp pages. IIS handles any other extensions with the custom error page I created (except for the above four I mentioned). Also, on a related note to this specific problem, the missing template handler IS NOT relative to the web root as the docs say. The only

CFMX 6.1 - Missing Template Handler

2005-01-18 Thread Andrew Tyrone
Hi everyone, OS is Windows 2000 Advanced Server w/ IIS 5. Has anyone noticed that CFMX only catches pages with .cfm and .cfml extensions as missing when the pages don't exist? .cfc and .jsp are also mapped to the same jrun.dll file, but CFMX doesn't catch missing pages with those extensions.

Missing template handler (CFMX patch)

2003-09-24 Thread Thomas Chiverton
Following the recent MX patch for the referer cross site scripting problem, I thought it was about time I added a 'missing template handler' to one of our MX 6.1 j2EE installs. But CF appears to be ignoring the setting and displaying the default error page. Does anyone know what this might

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

Missing Template Handler in CFMX not working

2003-04-03 Thread Cameron Childress
CFMX Linux UP2 I defined a missing template handler in the cfadmin, using a cfmapping for the path - IE: /mysite/404.cfm. I then deleted all the class files and restarted cfusion (just for good measure). Problem is, the missing temaplte handler doesn't seem to be taking hold at all. Has anyone

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
it for youchris -Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2003 5:20 AM To: CF-Talk Subject: Missing Template Handler in CFMX not working CFMX Linux UP2 I defined a missing template handler in the cfadmin, using a cfmapping for the path

cf 5 missing template handler

2002-12-20 Thread Regina Rempel
Hi I don't know why I am having such a hard time with this please help I have set a missing template in cfadmin but when I test i'm still getting the default coldfusion page. Using iis and cf 5 thanx Regina ~| Archives:

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

Missing Template Handler...

2002-11-15 Thread Lee Fuller
Ok.. Now I KNOW I hate help files for certain!! Sheesh The help for Missing Template Handler says: This fields lets you specify a default template to execute any time the ColdFusion Application Server cannot find a requested template. REALLY?? NAW! Say it isn't SO! 8/ I KNEW that. I'm

Re: Missing Template Handler...

2002-11-15 Thread Brook Davies
/02 -0800, you wrote: Ok.. Now I KNOW I hate help files for certain!! Sheesh The help for Missing Template Handler says: This fields lets you specify a default template to execute any time the ColdFusion Application Server cannot find a requested template. REALLY?? NAW! Say it isn't SO! 8/ I

RE: site wide missing template handler not working in MX

2002-07-29 Thread Mike Byers
that takes care of the Missing Template Handler file requirements. In CF Settings I have: /error/error_404.cfm This should work for the Site-wide Error Handler as well. Now, because my templates use files in a virtual directory that looks just like the physical one, I had to create a virtual

site wide missing template handler not working in MX

2002-07-26 Thread Brook Davies
Has ANYBODY been able to get the site wide error handler templates to work in CFMX? Everytime I try to add one in the admin it tells me the path is wrong. I've tried every combination of path variations under the sun. I've also seen a thread in the mm forums where other people are having the

Re: site wide missing template handler not working in MX

2002-07-26 Thread Marcello Frutig
AFAIK, this path in MX is now relative to the web root directory. Did you try this? Regards, Marcello Frutig. -- Astrolábio Has ANYBODY been able to get the site wide error handler templates to work in CFMX? Everytime I try to add one in the admin it tells me the path is wrong. I've tried

Re: site wide missing template handler not working in MX

2002-07-26 Thread Brook Davies
Yeah, I tried that. Has anyone got this working? Can someone running CFMX confirm that this is a bug please? Or just me.. At 02:44 PM 26/07/02 -0300, you wrote: AFAIK, this path in MX is now relative to the web root directory. Did you try this? Regards, Marcello Frutig. -- Astrolábio Has

Re: site wide missing template handler not working in MX

2002-07-26 Thread Sean A Corfield
On Friday, July 26, 2002, at 02:25 , Brook Davies wrote: I've tried that. And I have moved the file from directory to directory to no avail. Well, it works just fine here (with a .cfm extension). Have you tried just a very simple CF file (e.g., error.cfm containing just one line Error!) and

Re: site wide missing template handler not working in MX

2002-07-26 Thread Brook Davies
I've tried that. And I have moved the file from directory to directory to no avail. At 02:05 PM 26/07/02 -0700, you wrote: On Friday, July 26, 2002, at 10:29 , Brook Davies wrote: Has ANYBODY been able to get the site wide error handler templates to work in CFMX? Everytime I try to add one

Re: site wide missing template handler not working in MX

2002-07-26 Thread Sean A Corfield
On Friday, July 26, 2002, at 10:29 , Brook Davies wrote: Has ANYBODY been able to get the site wide error handler templates to work in CFMX? Everytime I try to add one in the admin it tells me the path is wrong. I've tried every combination of path variations under the sun. I've also seen a

RE: site wide missing template handler not working in MX

2002-07-26 Thread Mike Byers
files there, I know, but I keep my files elsewhere and wanted to keep it that way. This approach allows me to do that. Good Luck. Mike -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED]] Sent: Friday, July 26, 2002 1:16 PM To: CF-Talk Subject: Re: site wide missing template

RE: site wide missing template handler not working in MX

2002-07-26 Thread Brook Davies
, but I keep my files elsewhere and wanted to keep it that way. This approach allows me to do that. Good Luck. Mike -Original Message- From: Brook Davies [mailto:[EMAIL PROTECTED]] Sent: Friday, July 26, 2002 1:16 PM To: CF-Talk Subject: Re: site wide missing template handler not working

RE: site wide missing template handler not working in MX

2002-07-26 Thread Mike Byers
PROTECTED] ] Sent: Friday, July 26, 2002 3:22 PM To: CF-Talk Subject: RE: site wide missing template handler not working in MX Well, I am glad to hear that it IS working. I am simply referencing a file at the webroot. I have a feeling that CF might think the webroot is the standalone webroot

Re: Limitations in Missing Template Handler Template?

2001-12-04 Thread Jamie Jackson
, but they don't quite have the behavior I need within my custom CF 404 page. So, I'm still wondering about cfincludes within my Missing Template Handler page. Possible, or no? Is there anything special I need to do with the cfinclude to make it work? Thanks, Jamie On Fri, 30 Nov 2001 13:55:47

Re: Limitations in Missing Template Handler Template?

2001-12-04 Thread BILLY CRAVENS
For CFInclude, you can use mapped paths (in CF Administrator) to clean your pathing up. - Original Message - From: Jamie Jackson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 04, 2001 11:04 AM Subject: Re: Limitations in Missing Template Handler Template

Re: Limitations in Missing Template Handler Template?

2001-12-04 Thread Jamie Jackson
(in CF Administrator) to clean your pathing up. - Original Message - From: Jamie Jackson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 04, 2001 11:04 AM Subject: Re: Limitations in Missing Template Handler Template? Okay, figured it out. Both cffile and cfinclude

Limitations in Missing Template Handler Template?

2001-11-30 Thread Jamie Jackson
I'm trying to set up a custom 404 template that can (individually) handle multiple sites' (CF) 404 errors (they are hosted on the same server). I'm having trouble with cfincludes and cffiles within the custom CF 404 template: I can't get them to work. Are these disabled to prevent endless 404

Re: Limitations in Missing Template Handler Template?

2001-11-30 Thread Jamie Jackson
I've found that HTTP redirects and cflocations function properly, but they don't quite have the behavior I need within my custom CF 404 page. So, I'm still wondering about cfincludes within my Missing Template Handler page. Possible, or no? Is there anything special I need to do

Missing Template Handler problem

2001-02-22 Thread Jeremy Ridout
I'm running into a problem where it appears that Client variables or Cookies fail to get set properly when using the Missing Template handler. Has anyone else run into this, and if so, is there a workaround? I'm really baffled by this. From documentation and forums postings that I have seen

RE: CFAdmin - Missing Template Handler - Format?

2001-02-11 Thread Dave Watts
I want to use the "Missing Template Handler" in CFAdmin to have a custom 404 page for CF pages. What format do I put the file in in this box? Absolute path (http://...), relative path (relative to what)? You use a filesystem path (ex. "c:\inetpub\wwwroot\mymissingtemp

CFAdmin - Missing Template Handler - Format?

2001-02-08 Thread Evan Lavidor
I want to use the "Missing Template Handler" in CFAdmin to have a custom 404 page for CF pages. What format do I put the file in in this box? Absolute path (http://...), relative path (relative to what)? Thanks, Evan -- -=-=-=-=-=-=-=-=-=- Evan Lavidor Circle.com Boston Tel: 617-58