State of the CF Union 2023 Survey Released

The annual CF survey 2023, so help me check what the state of the CF union is right now

CF2021 Enterprise updates not downloading

Hi, I am running windows server 2016 with licensed version of CF2018 Enterprise and I just installed licensed version of CF2021 Enterprise. When I go into cfadmin on CF2018 and click to download the latest update (update 16) it downloads without issue. When I go into cfadmin on CF2021 and click to down load any of the available updates 3 thru 6 it just sits there and says downloading but nothing is happening. Any explanation why that works on CF2018 […]

Clarification Needed on CF2021 Manual Update Installation Process

Need some clarification on CF2021 manual update installation process.

Does coldusion 9.0.0.1 is compatible with weblogic 141.c

Does coldusion 9.0.0.1 is compatible with weblogic 141.c

External CSS in cfdocument

How to use external CSS while generating a .pdf using cfdocument.

RELEASED- ColdFusion 2021 and 2018 March 2023 Security Updates

We are pleased to announce that we have released the updates for the following ColdFusion versions: ColdFusion (2021 release) Update 6 ColdFusion (2018 release) Update 16 In this release, we’ve addressed some security vulnerabilities and added the following jvm flags to that effect. -Dcoldfusion.cfclient.enable=true/false -Dcoldfusion.cfclient.allowNonCfc=true/false For more information, see the tech notes below: ColdFusion (2021 release) Update 6 ColdFusion (2018 release) Update 16 These updates fix security vulnerabilities that are mentioned in the security bulletin,  APSB23-25. The Docker images will be […]

Adobe ColdFusion Fortuna Open Beta

The time is here, the time is now! CANCEL ALL YOUR WEEKEND PLANS! We are pleased to announce the opening of the CF Fortuna Open #Beta, now available on the Adobe Prerelease site! Features available in this release include: * GraphQL Client (native GQL support for consuming GraphQL endpoints) * Google Cloud Platform ( FireStore ) * Google Cloud Platform ( GCP Storage ) * Google Cloud Platform ( Pub/Sub ) * Central Configuration Service * HTML to PDF engine […]

Managing coldfusion-out.log and log rotation in ColdFusion

ColdFusion provides a built-in logging system to help you track and troubleshoot application issues. The logging system generates various log files, including the coldfusion-out.log file, which logs standard output and errors. However, if left unmanaged, the coldfusion-out.log file can grow very large and consume a lot of disk space. In addition, it can become difficult to find relevant log entries in a large log file. Therefore, it is important to manage the coldfusion-out.log file and implement log rotation to keep […]

Configuring MultiSubnetFailover for Microsoft SQL Connection String in ColdFusion

If you’re using ColdFusion 2021 and above, you’ll be happy to know that the latest versions of ColdFusion offer built-in support for multiSubnetFailover. This means you can configure your Microsoft SQL database connections to failover quickly and efficiently, with minimal impact on your applications and users. Below are the simple steps: Step 1: Log in to ColdFusion Administrator and navigate to the Data & Services > Data Sources page. Choose “Other” as the driver type and Enter a name for […]

Installing JDK 11.0.18 on server removes all other JDK 11 installations

A change of behavior in the Oracle JDK 11 installer deletes previously installed JDKs and overwrites the most recent version.

CFHTTP Call get method and passing data json

Hi i am trying replicate this call by PHP to Coldfusion: The call must be by method GET but passing data json in body {“parameter”: “2222222”} In PHP works fine but in coldfsuion no. $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, ‘http://{—URL—}); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, ‘GET’); curl_setopt($ch, CURLOPT_POSTFIELDS, “{‘param’: ‘2222222’}”); $headers = array(); $headers[] = ‘X-Api-Token: {—TOKEN–}’; $headers[] = ‘Content-Type: application/json’; curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $result = curl_exec($ch); Coldfusion not works fine: <cfhttp  url=”http://—-URL—” method=”GET” result=”res” charset=”utf-8″>     <cfhttpparam type=”header” […]