jessieloo
jessieloo

Reputation: 1872

Blank Pages in CF10 for .CFM (uppercase only) pages

We have multiple servers with IIS7 and ColdFusion. Some are CF9, some are CF10. Coldfusion pages ending in ".cfm" (lowercase) render correctly on both. However, if you type in ".CFM" (uppercase) as the browser url, the Coldfusion 10 servers return a blank white page. (page source is empty also) The Coldfusion 9 server renders the page normally. Any ideas on how to fix this?

Upvotes: 4

Views: 1548

Answers (2)

user1800937
user1800937

Reputation: 105

Coldfusion 10 is supposed to be case sensitive when it comes to file names.

http://forums.adobe.com/message/4524330

The CF10 case-sensitivity bugs (#3199281 & #3199283)

Upvotes: 4

Rob Bilson
Rob Bilson

Reputation: 361

ColdFusion 10’s built-in Tomcat web server handles case sensitivity different than the old JRun built-in web server. Basically, it follows the RFC and is case sensitive.

See this bug report in the CF 10 bugbase: https://bugbase.adobe.com/index.cfm?event=bug&id=3199283

Additional detail can be found here: https://docs.google.com/document/d/1k37HvumHZQTThJQRk99rIttc5k8ykm2BBVmJ4XZIjpY/edit

Upvotes: 4

Related Questions