This is from a blog I found using google. It fixed my problem.
I've been playing around with the FCKEditor, an open source inline html editor that I prefer over soEdit. The FCKEditor team has done some excellent work, especially in supporting several application server models for image and file uploading/linking.
Yesterday I ran into a problem installing the editor into an existing framework. For the life of me I had a hard time finding out why the image file browser wasn't loading the directory correctly. I could see the files being uploaded into the directory, but the content frames were not updating properly. After digging through the code and manually executing some of the callback url's, I discovered that the returned XML output of the ColdFusion connector wasn't properly formatted.
Wait... what's that, an extraneous </TD> element in the output?
Ding! Ding! Ding! Seems I had forgotten about the OnRequestEnd.cfm that the existing framework used. A simple <CFABORT> at the end of the FCKEditor/editor/filemanager/browser/default/connectors/cfm/connector.cfm did the trick.
here is the blog link:
http://wiggy.coldfusionjournal.com/fcke ... nector.htm
Sat, 03/25/2006 - 11:02
#1