HOWTO - Multiple ColdFusion instances on Intel Mac

Stephen Collins has a good article on the subjet.

CFMX Supports Apache 2.2 on Unix/Linux

From Adobe...

ColdFusion MX 7.0.1 now supports Apache 2.2. Apache 2.2 requires a separate connector module than Apache 2.0. The web server connector installer (wsconfig.jar build 107948) contains the connector changes required to support Apache 2.2.

See http://www.adobe.com/go/29626e93.

Asynchronous CFML Gateway

Working with Asynchronous CFML Gateway currently and found this entry on Fusion Authority but I learnt most from Damon Cooper's article. Here's another way to do it.

A Case for a Higher Default "Simultaneous Request" Setting

Getting Machine and Instance Names in a ColdFusion Cluster

From Will.Chang

<cfscript>
machineName = createObject("java", "java.net.InetAddress").localhost.getHostName();
// get this instance name instanceName = createObject("java", "jrunx.kernel.JRun").getServerName();
</cfscript>
<cfoutput>
Machine: #machineName#<br>
Instance: #instanceName#
</cfoutput>

Event Gateway for iChat

An alternative IM bot for talking from CFMX to an admin.

Event Gateways

Rick Root shares his experience of building an Event Gateway.

ColdFusion Peformance Tuning Presentation

Brandon Purcell has a good presentation on how to tune ColdFusion.

Pixl8 of London have recorded a good selection of CFMX Tuning resources.

SMTP Server Authenication

Need to pass the username/password onto the SMTP server for authenication, use:

"username:password@mydomain.com"

.as described here and here.

ColdFusion MX Tuning and Clustering Roundup

Brandon Harper has collected a great set of articles on ColdFusion setup which he has recorded for others.

More Entries

BlogCFC was created by Raymond Camden. This blog is running version 5.9.001. Contact Blog Owner