Hi!
Hope somebody can help me with this.
I'm using CKEDITOR with CKFINDER (php5).
I can upload images with ckeditor/ckfinder and paste them into my currently editing text.
But when I click on "browse server" and go to ckfinder,
I can't see my uploaded files. I only see my folders. The "upload button" is not clickable.
The files are there, but I can't view them in ckfinder. What's wrong?
I've been searching for answers everywhere. Please help.
SOME OF MY INFO:
my images are in "homepage/div/pics/"
ckfinder is in "homepage/admin/ckfinder/"
ckeditor is in "homepage/admin/ckeditor/"
some info from config.php:
$baseUrl = '/div/';
$baseDir = 'C:/www/homepage/div/';
$config['Thumbnails'] = Array(
'url' => $baseUrl . '_thumbs',
'directory' => $baseDir . '_thumbs',
'enabled' => true,
'directAccess' => false,
'maxWidth' => 400,
'maxHeight' => 300,
'bmpSupported' => false,
'quality' => 80);
$config['Images'] = Array(
'maxWidth' => 1600,
'maxHeight' => 1200,
'quality' => 80);
$config['AccessControl'][] = Array(
'role' => '*',
'resourceType' => '*',
'folder' => '/',
'folderView' => true,
'folderCreate' => true,
'folderRename' => true,
'folderDelete' => true,
'fileView' => true,
'fileUpload' => true,
'fileRename' => true,
'fileDelete' => true);
$config['DefaultResourceTypes'] = '';
$config['ResourceType'][] = Array(
'name' => 'Images',
'url' => $baseUrl . 'pics',
'directory' => $baseDir . 'pics',
'maxSize' => '100M',
'allowedExtensions' => 'gif,jpeg,jpg,png',
'deniedExtensions' => '');
$config['ResourceType'][] = Array(
'name' => 'Files', // Single quotes not allowed
'url' => $baseUrl . 'files',
'directory' => $baseDir . 'files',
'maxSize' => 0,
'allowedExtensions' => '7z,aiff,asf,avi,bmp,csv,doc,fla,flv,gif,gz,gzip,jpeg,jpg,mid,mov,mp3,mp4,mpc,mpeg,mpg,ods,odt,pdf,png,ppt,pxd,qt,ram,rar,rm,rmi,rmvb,rtf,sdc,sitd,swf,sxc,sxw,tar,tgz,tif,tiff,txt,vsd,wav,wma,wmv,xls,zip',
'deniedExtensions' => '');
$config['ResourceType'][] = Array(
'name' => 'Flash',
'url' => $baseUrl . 'flash',
'directory' => $baseDir . 'flash',
'maxSize' => 0,
'allowedExtensions' => 'swf,flv',
'deniedExtensions' => '');
$config['CheckDoubleExtension'] = true;
$config['SecureImageUploads'] = true;
$config['CheckSizeAfterScaling'] = true;
$config['HtmlExtensions'] = array('html', 'htm', 'xml', 'js');
$config['HideFolders'] = Array(".svn", "CVS");
$config['HideFiles'] = Array(".*"); //HOW ABOUT THIS ONE?
$config['ChmodFiles'] = 0777 ;
$config['ChmodFolders'] = 0755 ;
Hope somebody can help me with this.
I'm using CKEDITOR with CKFINDER (php5).
I can upload images with ckeditor/ckfinder and paste them into my currently editing text.
But when I click on "browse server" and go to ckfinder,
I can't see my uploaded files. I only see my folders. The "upload button" is not clickable.
The files are there, but I can't view them in ckfinder. What's wrong?
I've been searching for answers everywhere. Please help.
SOME OF MY INFO:
my images are in "homepage/div/pics/"
ckfinder is in "homepage/admin/ckfinder/"
ckeditor is in "homepage/admin/ckeditor/"
some info from config.php:
$baseUrl = '/div/';
$baseDir = 'C:/www/homepage/div/';
$config['Thumbnails'] = Array(
'url' => $baseUrl . '_thumbs',
'directory' => $baseDir . '_thumbs',
'enabled' => true,
'directAccess' => false,
'maxWidth' => 400,
'maxHeight' => 300,
'bmpSupported' => false,
'quality' => 80);
$config['Images'] = Array(
'maxWidth' => 1600,
'maxHeight' => 1200,
'quality' => 80);
$config['AccessControl'][] = Array(
'role' => '*',
'resourceType' => '*',
'folder' => '/',
'folderView' => true,
'folderCreate' => true,
'folderRename' => true,
'folderDelete' => true,
'fileView' => true,
'fileUpload' => true,
'fileRename' => true,
'fileDelete' => true);
$config['DefaultResourceTypes'] = '';
$config['ResourceType'][] = Array(
'name' => 'Images',
'url' => $baseUrl . 'pics',
'directory' => $baseDir . 'pics',
'maxSize' => '100M',
'allowedExtensions' => 'gif,jpeg,jpg,png',
'deniedExtensions' => '');
$config['ResourceType'][] = Array(
'name' => 'Files', // Single quotes not allowed
'url' => $baseUrl . 'files',
'directory' => $baseDir . 'files',
'maxSize' => 0,
'allowedExtensions' => '7z,aiff,asf,avi,bmp,csv,doc,fla,flv,gif,gz,gzip,jpeg,jpg,mid,mov,mp3,mp4,mpc,mpeg,mpg,ods,odt,pdf,png,ppt,pxd,qt,ram,rar,rm,rmi,rmvb,rtf,sdc,sitd,swf,sxc,sxw,tar,tgz,tif,tiff,txt,vsd,wav,wma,wmv,xls,zip',
'deniedExtensions' => '');
$config['ResourceType'][] = Array(
'name' => 'Flash',
'url' => $baseUrl . 'flash',
'directory' => $baseDir . 'flash',
'maxSize' => 0,
'allowedExtensions' => 'swf,flv',
'deniedExtensions' => '');
$config['CheckDoubleExtension'] = true;
$config['SecureImageUploads'] = true;
$config['CheckSizeAfterScaling'] = true;
$config['HtmlExtensions'] = array('html', 'htm', 'xml', 'js');
$config['HideFolders'] = Array(".svn", "CVS");
$config['HideFiles'] = Array(".*"); //HOW ABOUT THIS ONE?
$config['ChmodFiles'] = 0777 ;
$config['ChmodFolders'] = 0755 ;
Re: CKFINDER file upload and file view problem! Please help.
I'm still looking for answers on this topic.

Why can't I see my files with ckfinder?
Re: CKFINDER file upload and file view problem! Please help.
Re: CKFINDER file upload and file view problem! Please help.
The issue with Firefox 3.6 has been fixed since January
Re: CKFINDER file upload and file view problem! Please help.
Hi there everyone.
- just tested again), Internet Explorer (8 atleast) doesnt show any files, in any folder and upload button is greyed out. Firefox's Firebug gives a error also when clicking Refresh button. Cant see any other errors.
Im having exactly the same problem. Firefox, Opera (works
With Chrome and Safari, everything works perfectly. I cant browse files, thumbnails are created in the right global cache dir, refreshing the folder contents works and the console gives no errors what-so-ever.
Will post some pics also.