I am trying to integrate CKFinder into CKEditor by doing the following:
CKEDITOR.replace( 'TabNotes',
{
filebrowserBrowseUrl : 'editor/ckfinder/ckfinder.html?type=Files',
.
.
.
}
My problem is that I want to pass multiple types to type in the above line. How do I do this? I have tried
filebrowserBrowseUrl : 'editor/ckfinder/ckfinder.html?type=Files,AllUsers',
and
filebrowserBrowseUrl : 'editor/ckfinder/ckfinder.html?type=Files&type=AllUsers',
and neither work.
Any help would be appreciated.
CKEDITOR.replace( 'TabNotes',
{
filebrowserBrowseUrl : 'editor/ckfinder/ckfinder.html?type=Files',
.
.
.
}
My problem is that I want to pass multiple types to type in the above line. How do I do this? I have tried
filebrowserBrowseUrl : 'editor/ckfinder/ckfinder.html?type=Files,AllUsers',
and
filebrowserBrowseUrl : 'editor/ckfinder/ckfinder.html?type=Files&type=AllUsers',
and neither work.
Any help would be appreciated.

Re: Integrate CKEditor and CKFinder multiple resource type
If you really need it now, let me know and I'll show you a workaround, which requires changes in CKFinder server side scripts, unfortunately.
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Integrate CKEditor and CKFinder multiple resource type
I really need it now so if you can show me a workaround that would be great.
Thanks for your help
Re: Integrate CKEditor and CKFinder multiple resource type
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Integrate CKEditor and CKFinder multiple resource type
Coldfusion
Re: Integrate CKEditor and CKFinder multiple resource type
1) In config.cfm replace:
with:
if (isDefined("URL.type") and URL.type eq "Clipart,Images") { config.defaultResourceTypes = 'Clipart,Images'; URL.type = ''; } else { config.defaultResourceTypes = ''; }2) Open core\connector\cfm\CommandHandler\Init.cfc
Around line 80 replace:
if (not isDefined("URL.type") or URL.type eq THIS.config.resourceType[i].name) {with:
if (not isDefined("URL.type") or Len(URL.type) eq 0 or URL.type eq THIS.config.resourceType[i].name) {3) Point CKFinder to "'Clipart,Images" by setting among other configuration options:
/ckfinder/ckfinder.html?type=Clipart,Images
or by calling e.g. CKFinder.setupCKEditor( editor, '/ckfinder/', 'Clipart,Images' ) ;
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Integrate CKEditor and CKFinder multiple resource type
Context validation error for the cfscript tag.
Have I missed something?
Re: Integrate CKEditor and CKFinder multiple resource type
My apologizes, I had a typo in one of the edits that I made. It is working now. Thank you very much for your help!