Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 371
jessieloo Avatar asked Feb 18 '23 20:02

jessieloo


2 Answers

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)

like image 138
user1800937 Avatar answered Feb 27 '23 09:02

user1800937


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

like image 40
Rob Bilson Avatar answered Feb 27 '23 07:02

Rob Bilson