Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-04 Thread Pete Ruckelshaus
Yeah, I could think of a dozen better ways to handle this, but the client's wishes prevail... Pete On 9/3/06, Denny Valliant [EMAIL PROTECTED] wrote: Ah. I forgot that it's only in cfoutput you need to worry aobut ##s. Duh! The idea about the tracker link was to insert it in the .html pages,

Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-03 Thread Denny Valliant
Ah. I forgot that it's only in cfoutput you need to worry aobut ##s. Duh! The idea about the tracker link was to insert it in the .html pages, vs. changing the .html pages to .cfm. Thus, funpage.html has a img link to tracker.cfm, so each time the ..html page is loaded, there is a request to the

Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-02 Thread Robertson-Ravo, Neil (RX)
. The opinions expressed within this communication are not necessarily those expressed by Reed Exhibitions. Visit our website at http://www.reedexpo.com -Original Message- From: Pete Ruckelshaus To: CF-Talk Sent: Sat Sep 02 04:14:13 2006 Subject: CF IIS -- any way to treat .html files

Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-02 Thread Dirk De Bock - Lists
[EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Saturday, September 02, 2006 6:00 AM Subject: Re: CF IIS -- any way to treat .html files as .cfm? I'm thinking you can have .html, .htm or even .asp handled by the CF server. I could be way off, but go to IIS, WebSite, Properties

Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-02 Thread Robertson-Ravo, Neil (RX)
at http://www.reedexpo.com -Original Message- From: Dirk De Bock - Lists To: CF-Talk Sent: Sat Sep 02 07:28:04 2006 Subject: Re: CF IIS -- any way to treat .html files as .cfm? you also need to make changes in the coldfusion xml config file to get coldfusion to actually process the html

Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-02 Thread Dirk De Bock - Lists
http://www.talkingtree.com/blog/index.cfm/2006/2/17/CF-Custom-File-Extensions - Original Message - From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Saturday, September 02, 2006 8:34 AM Subject: Re: CF IIS -- any way to treat .html files

Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-02 Thread Robertson-Ravo, Neil (RX)
://www.reedexpo.com -Original Message- From: Dirk De Bock - Lists To: CF-Talk Sent: Sat Sep 02 07:56:08 2006 Subject: Re: CF IIS -- any way to treat .html files as .cfm? http://www.talkingtree.com/blog/index.cfm/2006/2/17/CF-Custom-File-Extension s - Original Message - From: Robertson-Ravo

Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-02 Thread Pete Ruckelshaus
The problem is this. There is a sniffer that is in the application.cfm file that tracks ad campaign URL's (this is a legacy requirement and is not how I would have solved the problem, but this is the way the client wants it to run). MOST of the URL's are .cfm files, and the sniffer works great

Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-02 Thread Denny Valliant
Why not just throw links to .cfm pages in the .html pages? Maybe use an img tag, an example of which just came through the list recently? Seriously, you'll run into all kinds of funky stuff, (I'm guessing, maybe your HTML is different than most) like as was mentioned, #'s (usually colors, but

Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-02 Thread Pete Ruckelshaus
There are links in the wild that are HTML pages that need to be processed, so if they were changed to .cfm pages, it would generate 404's. As far as #'s, etc., that would only be an issue for content that's inside cfoutput tags, which they won't have -- I'm mainly needing the functionality found

Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-02 Thread John C. Bland II
Why is a stats program not good enough? Are you looking for more granularity? I agree with you on the #'s. HTML's run through CF wouldn't have a prob, IMO. It is the same as changing the extension to .cfm. On 9/2/06, Pete Ruckelshaus [EMAIL PROTECTED] wrote: There are links in the wild that are

CF IIS -- any way to treat .html files as .cfm?

2006-09-01 Thread Pete Ruckelshaus
I have a tricky technical problem that I'm trying to solve. I think I could resolve this issue if I was able to process .html files as ColdFusion code. Is there any way to set IIS up to do this? I am using IIS5 CFMX 7 on WinXP (development environment) and Win2K3 Server (well, that's actually

Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-01 Thread Matt Williams
I'm thinking you can have .html, .htm or even .asp handled by the CF server. I could be way off, but go to IIS, WebSite, Properties, HomeDirectory, Configuration. Here you see how file extensions are handled and can edit them. Just change the executable path of the .htm to match that of the .cfm,