As far as I know, FCKEditor (or at least the version I've
worked with) doesn't provide for individual user directories. The
file you need to modify is the connector.cfm
editor/filemanager/browser/default/connectors/cfm/connector.cfm
Method 1: Set the users file path by modifying the connector
to support a third level, such as the session scope.
<cfif isDefined(Session.userFilesPath')>
<cflock scope="Session" type="readonly" timeout="3">
<cfset sUserFilesURL = Session.userFilesPath>
</cflock>
<cfelseif isDefined('APPLICATION.userFilesPath')>
<cflock scope="Application" type="readonly"
timeout="3">
<cfset sUserFilesURL = APPLICATION.userFilesPath>
</cflock>
<cfelseif isDefined('SERVER.userFilesPath')>
<cflock scope="SERVER" type="readonly" timeout="3">
<cfset sUserFilesURL = SERVER.userFilesPath>
</cflock>
Method 2: Give users access to their folder (R/W) and other
folders (R)
look for sUserFilesPath, it's in multiple places. You'll need
to add your user pathing information after that variable. Since by
definition, all the files in the UserFilesPath are web accessible,
they will be able to read any other users files, but you can lock
down delete/add/replace to the specific logged in user through some
path checks.