Is it possible to display the FCK Editor from a page that has been accessed over cfhttp?
For instance, page1.cfm contains an FCK Editor. page2.cfm uses cfhttp to get page1.cfm and display it. FCKEditor displays correctly when I navigate to page1.cfm, but just shows as a regular textarea when I access page2.cfm.
page1.cfm:
<cfmodule template="/fckeditor/fckeditor.cfm" basePath="/fckeditor/" instanceName="myEditor" value='test' width="100%" height="200" toolbarSet="Basic" >
page2.cfm
<cfhttp url="page1.cfm"> <cfoutput>#cfhttp.filecontents#</cfoutput>