Chad
Chad

Reputation: 25

Coldfusion 2021 loads white pages for cfm files

Here's some small info about the server:

Windows Server 2019
Coldfusion 2021
IIS 10

<!--- Dump out the server scope. --->
<cfdump var="#SERVER#" />

<!--- Store the ColdFusion version. --->
<cfset strVersion = SERVER.ColdFusion.ProductVersion />

<!--- Store the ColdFusion level. --->
<cfset strLevel = SERVER.ColdFusion.ProductLevel />

I've added everything in IIS, CGI, ISAPI Filters and Restrictions and I have all the handlers. I do have .cfm in the default documents. Issue I keep seeing on my test page is just a blank white screen. This was my test file coding:

What might be the issue and why am I just getting a white screen of death on all my cfm pages?

Thanks

Upvotes: 2

Views: 305

Answers (1)

Daemach
Daemach

Reputation: 467

Sounds like a disconnect between the app engine and IIS. You should look into commandbox: https://commandbox.ortusbooks.com/setup/installation

Also has BonCode connectors for IIS. https://commandbox.ortusbooks.com/embedded-server/external-web-server

Upvotes: -1

Related Questions