Fresh new install of CKFinder 1.4, and thumbnail generation seems to be borked. I can see it's creating a 'thumbs' directory, and an 'images' directory within that, but not populating it with anything. So thumbnails appear as question marks within CKFinder.
The directory permissions are set to 777.
I'm running Apache 2, PHP 5.2.6, and GD 2.0.34 on Linux (MediaTemple Dedicated Virtual box).
FWIW, when selecting an image within CKFinder, the full version does show up in CKEditor's image dialog.
Thanks for any help!
The directory permissions are set to 777.
I'm running Apache 2, PHP 5.2.6, and GD 2.0.34 on Linux (MediaTemple Dedicated Virtual box).
FWIW, when selecting an image within CKFinder, the full version does show up in CKEditor's image dialog.
Thanks for any help!

Re: Thumbnail generation not working in CKFinder 1.4.
I'm running Apache 2, PHP 5.2.6, and GD 2.0.34 on Linux as well.
Re: Thumbnail generation not working in CKFinder 1.4.
Re: Thumbnail generation not working in CKFinder 1.4.
apache2, PHP 5.2.8 (safe_mode Off), GD 2.0.34, OpenBSD 4.5 i386
Re: Thumbnail generation not working in CKFinder 1.4.
http://getsatisfaction.com/brandonkelly ... _in_wygwam
Re: Thumbnail generation not working in CKFinder 1.4.
Re: Thumbnail generation not working in CKFinder 1.4.
Re: Thumbnail generation not working in CKFinder 1.4.
http://www.php.net/gd
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Thumbnail generation not working in CKFinder 1.4.
Re: Thumbnail generation not working in CKFinder 1.4.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Thumbnail generation not working in CKFinder 1.4.
G.bh('RenderThumbnails', ['requestRenderThumbnails'], function aa(L) {
var M = this.hF.files;
if (!M[0]) return;
var N = function (aT) {
var bm = 0;
while (aT) {
bm += aT.o
ffsetTop;
aT = aT.offsetParent;
}
return bm;
},
TO
bm += aT.offsetTop;
Re: Thumbnail generation not working in CKFinder 1.4.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
I got same Issue what I did
I got same Issue what I did just view source and copy location of thumnail image from firebug
and past this URL into browser I got error in path of thumbnail
ckfinder/core/connector/php/connector.php?command=Thumbnail&type=Images¤tFolder=%2Fadventure%2F&langCode=en&hash=731e615f012fefc7&FileName=adventure-isle.jpg&fileHash=201205211840-10
I come to know that I am using wrong folder name of images with Capital I as "Images" rather it is "images" small i
Just Updated my config.php file as blow and it works fine for me.
$config['ResourceType'][] = Array(
'name' => 'images',
'url' => $baseUrl . 'images',
'directory' => $baseDir . 'images',
'maxSize' => 0,
'allowedExtensions' => 'bmp,gif,jpeg,jpg,png',
'deniedExtensions' => '');