i integraded the ckfinder in my ckeditor (JS method), not it shows the Browse button, only when i click that button it won't show any content/folder that is in the directory!
in the original userfiles folder it won't do anything too!!
directory's:
baseurl: domain.com/images/
images folder: domain.com/images/site/
flash folder: domain.com/images/flash/
files folder: domain.com/images/files/
in the php file i editted:
$baseUrl = 'http://domain.com/images/';
$baseDir = '/domains/domain.com/public_html/images/';
also changed thisone:
$config['ResourceType'][] = Array(
'name' => 'Images',
'url' => $baseUrl . 'site',
'directory' => $baseDir . 'site',
'maxSize' => "16M",
'allowedExtensions' => 'gif,jpeg,jpg,png',
'deniedExtensions' => '');
and i've got the auth.funtion working with my own system:
if(ismod() === true)
{
return true;
}
else
{
return false;
}
i hope somebody could help me! would love to buy a license.. but first it has to work properly!
Mon, 06/06/2011 - 20:43
#1
Re: no folders in browser
nobody can help me??
Re: no folders in browser
'/domains/domain.com/public_html/images/'
Have you tried uploading a new file? Does CKFinder show this file after uploading it?
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: no folders in browser
i cant upload because 'there is no folder selected'
and that is because it can't find any folders
Re: no folders in browser
If yoes, go to the "/domains/domain.com/public_html/images/'" folder and type pwd to find the right absolute path.
In cases like yours there are usually two reasons why CKFinder does not work:
- the absolute path is wrong, e.g. it is "/home/mike/domains/domain.com/public_html/images/'" instead of "/domains/domain.com/public_html/images/'"
- CKFinder does not have write access to the specified folder.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: no folders in browser
that info i also needed, thanks alot!! but also there is something wrong in my auth. funtion
Re: no folders in browser