I guess I'm not following how to use this in with my Coldfusion page.....
I modified the fckconfig.js to use the Coldfusion connectors, and uploaded all the files in a ../FCKeditor directory.
On the page I wanted the editor to appear, I added a <cfinclude template="../FCKeditor/fckeditor.cfm">
Am I missing something here?
I modified the fckconfig.js to use the Coldfusion connectors, and uploaded all the files in a ../FCKeditor directory.
On the page I wanted the editor to appear, I added a <cfinclude template="../FCKeditor/fckeditor.cfm">
Am I missing something here?

RE: Problem using with Coldfusion
RE: Problem using with Coldfusion
This page uses the CFPARAM tag to declare the parameter attributes.instanceName as required for this template. The parameter is not available.Please verify that you have passed or initialized the parameter correctly. If you wish to set a default value for the parameter you should use the DEFAULT attribute of the CFPARAM tag.
Is the message I'm getting currently
RE: Problem using with Coldfusion
http://fckeditor.wikiwikiweb.de/Develop ... ColdFusion
RE: Problem using with Coldfusion
I tried adding the <cfscript> example to the start of the .cfc, but I still get the same error....
RE: Problem using with Coldfusion
Then open the file FCKeditor/_samples/cfm/sample02_mx.cfm and see how it's done.
You seem to be lacking basic ColdFusion knowledge, which is required to use this editor for ColdFusion.
Re: Problem using with Coldfusion
Re: Problem using with Coldfusion
<cfmodule
template="fckeditor\fckeditor.cfm"
basePath="fckeditor"
instanceName="your input field name"
value="This is a test fckeditor"
width="100%"
height="400">
cheers
Re: Problem using with Coldfusion
from: <cfparam name="attributes.instanceName" type="string">
to: <cfparam name="attributes.instanceName" type="string" default="myEditor">
Is this ok, it is working fine but if you see a problem with this I will take your route?
Thanks again.