Multifactor Authentication Support (MFA)

I have a project where I need MFA to a cell phone. Is there any MFA documentation in ColdFusion?

ColdFusion 2023 – Google Cloud Platform – FireStore

Cloud Firestore is a flexible, scalable NoSQL cloud database to store and sync data for client- and server-side development. It offers seamless integration with other Firebase and Google Cloud products. Here are some use cases where Firestore can be effectively applied: Real-Time Applications: Firestore allows real-time listeners to be attached to data, enabling the development of applications that require real-time updates like collaborative tools, real-time analytics, dashboards, or gaming leaderboards. Offline Synchronization: Firestore supports automatic offline data persistence. This is […]

ColdFusion 2023 – GraphQL Client

GraphQL is a query language for APIs and a runtime for executing those queries with your existing data. It provides a more efficient, powerful, and flexible alternative to REST. In ColdFusion 2023 we are providing a native method of consuming and sending data across GraphQL using GQL. This includes support for fragments, variables, aliases, queries, mutations, subscriptions and more. In future versions of ColdFusion we will add the ability to expose your own data as GraphQL endpoints, but in the […]

ColdFusion 2023 – Google Cloud Platform – Storage

Google Cloud Storage is a scalable, fully-managed, secure, and highly available object/blob storage service from Google Cloud. It’s designed to handle data from any source and can serve data to any destination. You can do just about anything with it that requires storing and accessing files and data, but here are a few potential use cases: Backup and Archival: Google Cloud Storage can be used to store backups of your data, whether it’s from your on-premises servers or from other […]

ColdFusion 2023 – Google Cloud Platform – Pub/Sub

Google Cloud Pub/Sub is a scalable, durable event ingestion and delivery system that serves as a foundation for real-time analytics and event-driven applications. Use cases for GCP Pub/Sub include: Real-time Analytics: Pub/Sub can be used to ingest large amounts of data in real-time, such as logs, metrics, or user activity data, and then process it in real-time. This data can be used to generate analytics and insights, like user engagement metrics, system performance data, etc. Event-driven Microservices Architecture: In a […]

ColdFusion 2023 – Central Configuration Server

The Central Configuration Server is a powerful addition to Adobe ColdFusion 2023 that simplifies the management and configuration of multiple ColdFusion instances across different servers. It acts as a centralized repository for storing and managing ColdFusion server configuration files, making it easier for developers to deploy and maintain their applications. Key Features and Benefits: Centralized Management: The Central Configuration Server allows developers to centrally manage and configure multiple ColdFusion instances. This eliminates the need to manually update configuration files on […]

ColdFusion 2023 – HTML to PDF

The HTML to PDF conversion functionality allows developers to convert HTML files, strings, or URLs into PDF documents. The feature proves beneficial when you need to provide website content in a portable, easily shareable format. Reports, invoices, and other documentation often need to be generated as PDFs from HTML content. Adobe ColdFusion makes this process straightforward and efficient. When the <cfhtmltopdf> tag first came out, it changed the game in terms of outputting PDF documents from your code. But as […]

Address binding error in Linux-based OS during Cluster creation in ColdFusion

Setting up a cluster in ColdFusion can significantly enhance application scalability and reliability. However, administrators may encounter an error during the cluster creation process in the Red Hat Enterprise Linux (RHEL)-based operating system if ColdFusion lacks permission to read the IP list from the system hosts file. This article addresses the issue where ColdFusion instances within the cluster automatically stop upon restart, accompanied by specific errors in the coldfusion-error.log file. We will explore the cause of this error and provide […]

Introducing the 2023 Release of Adobe ColdFusion

We are thrilled to announce the highly anticipated release of Adobe ColdFusion 2023!  Packed with cutting-edge features and enhanced performance, this release takes ColdFusion to new heights of innovation. Experience accelerated development, robust security measures, and seamless integration with modern technologies. From rapid application development to scalable enterprise solutions, Adobe ColdFusion empowers developers to build dynamic web applications with ease. Discover the limitless possibilities and stay ahead in the digital era. Upgrade to the latest version now and harness the […]

The ColdFusion ODBC Server service is not running or has not been installed. You may also use the “MS Access with Unicode” driver to connect to MS Access datasources.

while create datasource with Ms access in cold fusion it give error as The ColdFusion ODBC Server service is not running or has not been installed. You may also use the “MS Access with Unicode” driver to connect to MS Access datasources please help i try with following approach still it getting same error Step 1: Uninstall any existing “Microsoft Access database engine ” from addremove program. Step2: Ensure that you don’t have any MS Access related data source defined […]

Configuring ColdFusion Websocket proxy in distributed mode on Linux

–!> On Server A, Install Apache –!> On Server B, Install Coldfusion –!> Copy the below files and JRE directory from Server B to Server A (We need to create the same directory structure on Server A where Apache is installed) /opt/ColdFusion2021/jre (directory you need to copy the JDK to which coldfusion is pointed to) /opt/ColdFusion2021/cfusion/lib/wsproxyconfig.jar /opt/ColdFusion2021/cfusion/runtime/conf/server.xml /opt/ColdFusion2021/config/instances.xml /opt/ColdFusion2021/config/cluster.xml –!> Run wsproxyconfig.jar file to create a connector on Server A ( Apache server) /opt/ColdFusion2021/jre/bin>./java -jar /opt/ColdFusion2021/cfusion/lib/wsproxyconfig.jar -ws Apache -dir /etc/apache2/ […]