I have FCKEditor 2.6 running perfectly on Drupal 6.x, but have a small problem. I have FCKEditor's File Manager working, but it places all uploaded files in a generic folder. I was wondering if each user that uploads an image/file could have their own folder inside that generic folder. This would be useful to me for housekeeping purposes, and to keep track of who uploaded what, and possibly set quotas. I am thinking that it would take a username wildcard in the config file.
Something like:
upload_dir = '/uploads/*username*/'
But I may be offbase. Thanks.
Something like:
upload_dir = '/uploads/*username*/'
But I may be offbase. Thanks.
Re: Sort uploads based on username?
You may either submit a feature request or implement it your own and provide a patch for us.
Re: Sort uploads based on username?
For example, if you use session to keep user details you can change UserFilesPath (in config.php) value into something like:
$Config['UserFilesPath'] = '/userfiles/'.$HTTP_SESSION_VARS["member_name"].'/' ;