We are using Drupal's FCKEditor module, which was storing images in an "image/" folder. During the process of installing the CKEditor module and testing CKFinder, I learned that CKFinder is looking for files in an "images/" folder, which means any files uploaded via FCKEditor are not available when using the "browse server" feature.
However, I can't see where to configure this. Any ideas?
Fixed
I was able to fix by editing the CKFinder config.php file:
$config['ResourceType'][] = Array(
'name' => 'Images',
'url' => $baseUrl . 'image', // not images
'directory' => $baseDir . 'image', // not images
'maxSize' => 0,
'allowedExtensions' => 'bmp,gif,jpeg,jpg,png',
'deniedExtensions' => '');
Thanks for posting the
Thanks for posting the solution. Yep, the default folder names have changed in CKFinder, comparing to the names used in old FCKeditor.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+