Reputation: 1872
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
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
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