I tried setting the path in my global file to no avail, so I even put it directly in the script below, still nothing. It ignores it and creates a new folder in my directory structure called UserFiles.
<cfscript>
// Calculate basepath for FCKeditor. It's in the folder right above _samples
basePath = #request.fckeditoraddress#;
fckEditor = createObject("component", "#basePath#FCKeditor");
fckEditor.instanceName = "content";
fckEditor.userFilesPath = "/uploads/";
fckEditor.ToolbarSet = 'Verticals' ;
fckEditor.value = '#Variables.content#';
fckEditor.basePath = basePath;
fckEditor.width = "400";
fckEditor.height = 500;
fckEditor.create(); // create the editor.
</cfscript>
<cfscript>
// Calculate basepath for FCKeditor. It's in the folder right above _samples
basePath = #request.fckeditoraddress#;
fckEditor = createObject("component", "#basePath#FCKeditor");
fckEditor.instanceName = "content";
fckEditor.userFilesPath = "/uploads/";
fckEditor.ToolbarSet = 'Verticals' ;
fckEditor.value = '#Variables.content#';
fckEditor.basePath = basePath;
fckEditor.width = "400";
fckEditor.height = 500;
fckEditor.create(); // create the editor.
</cfscript>

RE: UserFilesPath custom setting ignored-CFM
RE: UserFilesPath custom setting ignored-CFM
RE: UserFilesPath custom setting ignored-CFM
RE: UserFilesPath custom setting ignored-CFM
root
-- subfolder (where application.cfm resides that has the user session folder I want it to pick up)
----fckeditor
----CMS (where the content editing area resides)
instead of
root
--subfolder
----CMS
--fckeditor
but it still won't pick up the session vars for the user folder. This is critical, since this is an online CMS shared by many clients.
RE: UserFilesPath custom setting ignored-CFM
This is basic ColdFusion stuff.
What you can do is create an Application.cfm file in the fckeditor directory, and cfinclude the Application.cfm located in the subfolder.
Or you could place your Application.cfm in the root folder.
RE: UserFilesPath custom setting ignored-CFM
RE: UserFilesPath custom setting ignored-CFM
http://fckeditor.wikiwikiweb.de/Develop ... ColdFusion
RE: UserFilesPath custom setting ignored-CFM
I did take the time to read the documentation and also hours and hours pouring through this forum, and if I was only having to have everyone go to the same folder, you are correct, I would not need the cfapplication tag, but since I'm using session vars to direct each user to their own folder, it appears that I do. The duplication is that the cfapplication call now resides in both my app_globals and this new application.cfm tag.
BTW, I also had tried set the userFilesPath just before the call and it did not work.
RE: UserFilesPath custom setting ignored-CFM
RE: UserFilesPath custom setting ignored-CFM
RE: UserFilesPath custom setting ignored-CFM
http://127.0.0.1:8600/YOURAPP/FCKeditor ... entFolder=