I have recently downloaded the latest and greatest Ckfinder 2.1 (php). I got it running perfectly on my local server, but when I upoaded it to my live site the thumbnails for newly uploaded images are NOT created, the image itself can be viewed by right clicking and viewing.
The only configuration changes made when switching from my local environment to the live environment were the $baseUrl and $baseDir variables.
Local configuration:
$baseUrl ='/localSite/ckfinder/userfiles/';
$baseDir =resolveUrl($baseUrl);
Live configuration:
$baseUrl ='/';
$baseDir ='/my/web/root/';
I noticed because the $baseUrl = '/'; the _thumbs folder is located in the site root outside of the ckfinder folder which makes sense but when I tried changing the $baseUrl to inside chfinder/userfiles/ I get a folder not found error when I open ckfinder in the browser.
The main concern is that the thumbnail of a newly uploaded image is NOT created in the _thumbs folder. and thus does not display in the ckfinder UI.
What am I doing wrong? Thanks
The only configuration changes made when switching from my local environment to the live environment were the $baseUrl and $baseDir variables.
Local configuration:
$baseUrl ='/localSite/ckfinder/userfiles/';
$baseDir =resolveUrl($baseUrl);
Live configuration:
$baseUrl ='/';
$baseDir ='/my/web/root/';
I noticed because the $baseUrl = '/'; the _thumbs folder is located in the site root outside of the ckfinder folder which makes sense but when I tried changing the $baseUrl to inside chfinder/userfiles/ I get a folder not found error when I open ckfinder in the browser.
The main concern is that the thumbnail of a newly uploaded image is NOT created in the _thumbs folder. and thus does not display in the ckfinder UI.
What am I doing wrong? Thanks