Very old ColdFusion version suddenly adding spaces to CFIMAGE URL’s

We have a site using coldfusion that is supposed to display images that are pulled from a shared drive. Recently these images are no longer displayed properly. When clicked on to open the image URL an error is received- The requested URL /images/building/ 7780A.jpg was not found on this server. We realized the url being passed suddenly has a space before the image name example above is space7780a. We have added new photos making sure there is no space in […]

Quick Fix for PDFg Service Authentication error after ColdFusion Migration

You may have encountered a scenario where the PDFg service fails after running the migration wizard in ColdFusion and may have noticed the below error message in the logs. Getting Started: [Thread-12] – Error in setting up authentication for PDFg services. at coldfusion.document.PDFgCryptoUtils.processCipherWork(PDFgCryptoUtils.java:482) at coldfusion.document.PDFgCryptoUtils.decrypt(PDFgCryptoUtils.java:376) at coldfusion.document.PDFgCryptoUtils.decrypt(PDFgCryptoUtils.java:195)   An easy way to fix this is by copying the “seed.properties” and .prikey from the “lib” folder( \ColdFusionxxx\cfusion\lib ) of the old install and replacing them on the new install. Please ensure you […]

How to Change the Default Solr Home Path in ColdFusion

Sometimes, there are instances where you might need to customize the default Solr configuration, such as changing the default Solr home path. This blog will guide you through the process of changing the Solr home path in ColdFusion to a custom location. 1.  Copy the entire “multicore” folder from the default install(\ColdFusion2023\cfusion\jetty\multicore) to the custom folder, say for example C:\collections\multicore. 2. Go to the ColdFusion admin page, find the Solr server settings, and update the path to point to your […]

ColdFusion (2021 release) Update 12

ColdFusion (2021 release) Update 12 breaks our applications

RELEASED- ColdFusion 2023 and 2021 March 12th, 2024 Security Updates

ColdFusion (2023 release) Update 7  and ColdFusion (2021 release) Update 13  (release date, March 12, 2024) addresses vulnerabilities mentioned in the security bulletin [APSB24-14] and fixes other security issues. This update also contains a Tomcat upgrade (v9.0.85). This update also contains a major change related to scope look-up behavior that could impact your applications.   Where do I download the updates from ColdFusion (2023 updates) ColdFusion (2021 updates) In these updates, we’ve fixed a few security bugs mentioned in the […]

Common Security Error in ColdFusion

Ensuring the security of your ColdFusion environment is crucial, and by adhering to simple rules, you can significantly enhance its robustness. Here are some key practices to follow: Use Supported Versions: Always make sure to use a ColdFusion version supported by Adobe. Regularly update both ColdFusion and Java to benefit from the latest security patches and improvements. Utilize cfqueryparam: Protect your applications from SQL injection attacks by consistently using cfqueryparam in your queries. Despite these fundamental security measures, it’s essential […]

CF2023 offline activation via Admin API

(Originally published in Feb 2024; updated in Aug 2025) When you enter a ColdFusion serial number, whether during installation or via the CF Admin “Licensing and Activation” page, the activation of that license (new since CF2021) should take place immediately, interacting with the Adobe licensing server over the internet. And when the server is offline/on a private network or CF is not connected to the internet (such as via proxy settings in the CF Admin Package Manager>Settings page), the CF […]

ColdFusion 2018

I just installed ColdFusion 2018 and there are 16 updates. I there a script I can run to install all of the updates one time?

I/O Exception: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

Hi Experts, I am facing same issue in my application when calling HTTPS services with we are using below versions: I/O Exception: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target Server Product ColdFusion Version 2018,0,19,330149 Edition Enterprise Operating System UNIX JAVA java version “11.0.17” 2022-10-18 LTS Java(TM) SE Runtime Environment 18.9 (build 11.0.17+10-LTS-269) Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.17+10-LTS-269, mixed mode TOMCAT SERVER Please let me know if any details required. Thanks!

Coldfusion 2023 throws a 500 error in IIS

IIS requests to the ISAPI filter for Coldfusion 2023 result in a 500 error.

Licensing and Activation – Usage

I have installed Adobe ColdFusion 2021 with Enterprise Key. The Activation was successful with the following information in the the “Activation” tab page Server Edition  : Enterprise Activation Status : Activated Deployment Type : Production Device ID  : XXXXXX When I click on the “Usage” tab, I don’t see any information  other than a message “The Usage data is not applicable to the serial number applied on this ColdFusion” Is this normal ? The ‘Licensing and Activation -> Settings -> Usage […]

Using Custom Tags for Migration from Older Versions to ColdFusion 2023

When working on migration projects to ColdFusion 2023, one of the most common updates is to bulk replace instances of ‘cf_sql_int’ with ‘cf_sql_integer’. In some projects, data validation for variables may have been overlooked, such as using float data or commas in numeric values. To address these issues comprehensively, we can employ custom tags like ‘cf_query’ and ‘cf_queryparam’ to handle required conversions and data validation. An excellent reference for this approach is Adam Cameron’s 2012 article on ‘Custom tags: nesting’: […]