- this probelm occurred when trying to upload files to the server in authenticated mode. To work around on this, (with our experience) you have to set the following at place first:
- Under FKCEditor profile.
- Expand File browser settings
- Allow quick uploads: True
- Path to uploaded files: %b%f/
- Absolute path to uploaded files: %d%b%f/
- Then click Update Profile to save settings.
- ops!.. not finished yet...
============= start of config file =============
global $Config ;
$Config['Enabled'] = true ;
$Config['UserFilesPath'] = '/sites/default/files/' ;
$Config['UserFilesAbsolutePath'] = '/<host root path to drupal platform>/sites/default/files/' ;
$Config['ForceSingleExtension'] = true ;
$Config['SecureImageUploads'] = true;
.
.
.
============= end of config file =============
5. save the changes and retry uploading files again.
6. This should work now.