Contact

If you like a new Web or Desktop
application, update a existing one
or add new modifications. Your at
the right place and hit the
hire me button

Follow

If your intersted you can follow
me on Twitter by clicking here

Web and Apps Building Refernce World Wild Web UNIX Apps AND Tips Programming languages

Error creating folder "redirect:/index.php/" (Can't create redirect:directory) drupal 6



- 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:

  1. Proceed to Site Configuration > FCKeditor.
  2. Under FCKEditor Settings. Select Advanced and click edit (under the Operations)

    - 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...
     

  3. At this point: you must have access with config.php file to modify and apply changes.
  4. Proceed to the below path to edit config.php
    path: /drupal5test/modules/fckeditor/fckeditor/editor/filemanager/connectors/php/config.php

============= 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.