Ross
Ross

Reputation: 362

Application.cfm not run in ColdFusion app

I've got 2 ColdFusion apps built with a similar layout. They were built about the same time. I've recently upgraded my local server to ColdFusion 9. They both work fine locally but when I visit them through my IP one doesn't run the application.cfm. The other does. They're both running on the same server. Any ideas?

Upvotes: 2

Views: 1295

Answers (2)

Evik James
Evik James

Reputation: 10473

If your application has an Application.cfc, and an Application.cfm or onRequestend.cfm page, ColdFusion ignores the CFM pages.

http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=AppEvents_01.html

Upvotes: 1

Jason Dean
Jason Dean

Reputation: 9615

My first thought is that on a case-sensitive file system, Application.cfm MUST have a capital A.

Upvotes: 7

Related Questions