Hello All,
I am looking for help integrating FCKEditor with my Coldfusion. Application. I have a description field in my vendor table and would like to change it to use FCKeditor. Can someone help show me where I can find information on doing this.
Thanks
I am looking for help integrating FCKEditor with my Coldfusion. Application. I have a description field in my vendor table and would like to change it to use FCKeditor. Can someone help show me where I can find information on doing this.
Thanks
Re: Integrating FCKeditor into Coldfusion
<cfmodule TEMPLATE="../../wysiwyg/fckeditor/fckeditor.cfm"
instanceName="story"
value="#sql_query.story#"
config="#structNew()#"
basePath="#webadmin#wysiwyg/fckeditor/"
>
"instanceName" is the name of the form field (that you will get when submitting as, in the example above "form.story" that you will be able to insert using <cfquery>).
"value" will contain the content when you are editing (new should be blank, in the exampke above, the field is retrieved from query "sql_query" and the field is named "story".
Re: Integrating FCKeditor into Coldfusion
I've got the text part of the editor working no problem with ColdFusion.. but when I try to browse for a image to load or browse to a link.. I get an error to the effect of "This connector is disabled. Please check the '/editor/filemanager/connectors/php/config.php' " shouldn't this be defined in the ColdFusion connector using a cffile tag?.. Is it required for me to run php to use the image/ link browser.. if so why? (BTW I deleted all the php, asp, etc files aka other server side language files but not any js files)
TIA
Mark Holm