I down load FCKeditor 2.6.4.1 to replace an older version so that chrome and safari users could edit items.
In the older version I used the following code to allow users to browse and save picture in a personal directory.
To set the user file path at the time four years ago this worked fine. Now after updating and using
I can not get the fck file browser to see anything but the userfiles in the browser config file.
I have tried various different approaches but to no avail. I can't find anything in the forum that answers this cold fusion problem.
Any Ideas??
In the older version I used the following code to allow users to browse and save picture in a personal directory.
<cfset request.FCKeditor = StructNew()> <cfset request.FCKeditor.userFilesPath = "/beta/teacher/#url.assignments#/pictures/"> <cfset server.FCKeditor = StructNew()> <cfset server.FCKeditor.userFilesPath = "/beta/teacher/#url.assignments#/pictures/">
To set the user file path at the time four years ago this worked fine. Now after updating and using
<cfset request.FCKeditor = StructNew()> <cfset request.FCKeditor.userFilesPath = "/beta/teacher/#url.assignments#/pictures/"> <cfset server.FCKeditor = StructNew()> <cfset server.FCKeditor.userFilesPath = "/beta/teacher/#url.assignments#/pictures/"> <cfmodule template="/beta/fckeditor3/fckeditor/fckeditor.cfm" basePath="/beta/fckeditor3/fckeditor" instanceName="myEditor" value="#mess2#" width="100%" height="460" >
I can not get the fck file browser to see anything but the userfiles in the browser config file.
// SECURITY: You must explicitly enable this "connector". (Set enabled to "true") Config.Enabled = true ; // Path to uploaded files relative to the document root. Config.UserFilesPath = "/userfiles/" ;
I have tried various different approaches but to no avail. I can't find anything in the forum that answers this cold fusion problem.
Any Ideas??
Re: FCKeditor 2.6.4.1, Userfiles, Browser Issue