Skip to main content
All CollectionsColdFusion
March 2024 ColdFusion HotFix Information
March 2024 ColdFusion HotFix Information

This article contains information about breaking changes in the latest ColdFusion HotFixes affecting CF2021 and CF2023.

Updated over 3 weeks ago

Introduction

This document has been put together to discuss the potentially breaking changes Adobe ColdFusion is making in the most recent ColdFusion updates.

Breaking Changes

SCOPE VARIABLE CHANGES

By default, if ColdFusion finds a variable name without a prefix, it used to check the variable in different scopes in a specific order.

Starting with this update, ColdFusion will default to searchimplicitscopes=FALSE and if a variable name is not prefixed with a scope identifier, an error is returned.

What are the scopes that are impacted by the change?

  • CGI

  • URL

  • Form

  • Cookie

  • CFFile

  • Client

Example of breaking change:

The code below will fail with the exception, Variable TEST is undefined.

<cfset cookie.test=1> 
<cfoutput>#test#</cfoutput>

How to resolve (VPS customers):

Option 1 (Recommended):

Correct your code to fetch variables from the correct scope:

<cfset cookie.test=1>
<cfoutput>#cookie.test#</cfoutput>

Option 2:

Add JVM flag -Dcoldfusion.searchimplicitscopes=true to the Java arguments


Option 3:
You can update the application.cfm/cfc file and set the searchimplicitscopes key to TRUE

This will override the jvm flag set at the server level.

How to resolve (Shared customers):

Option 1 (Recommended):

Correct your code to fetch variables from the correct scope:

<cfset cookie.test=1>
<cfoutput>#cookie.test#</cfoutput>

Option 2:
You can update the application.cfm/cfc file and set the searchimplicitscopes key to TRUE

This will override the jvm flag set at the server level

Add:

searchimplicitscopes = true

To your application.cfc or application.cfm.

Important note for both VPS and shared customers NOT using option 1:

The JVM flag "-Dcoldfusion.searchimplicitscopes=true" will be disabled in future versions of ColdFusion. You must work to update your code.

Only option 1 is a permanent solution.

Changes in CFDOCUMENT

By default, ColdFusion will now block all protocols, except HTTP and HTTPS when using <iframe src=" "> in the body of cfdocument.

VPS Options:

Customers with their own VPS can have the JVM arguments altered to allow other protocols such as FTP.
For example, -Dcoldfusion.iframe.allowedprotocols=ftp would allow the iframe to connect to the FTP protocol

Shared Options:

Shared users can only use HTTP and HTTPS with iframe.

More help needed?

Contact our support team, we would be happy to help address any queries

Did this answer your question?