I have updated to CKEditor 3.3.0 and it works fine with CKFinder 1.4.3.
But it doesn't work with CKFinder 2.0.0 - CKFinder doesn't come up.
Configuration code (for CKEditor) after calling CKFinder has no effect.
Questions:
- Has someone else the same / a similar problem?
- Where can I find additional error infos?
- Could someone post a working example?
- Was there an important change in the CKFinder configuration (config.php)?
Here is my PHP code fragment (works for "CKEditor 3.3.0 + CKFinder 1.4.3" but not for "CKEditor 3.3.0 + CKFinder 2.0.0":
Thanks for any support ...
But it doesn't work with CKFinder 2.0.0 - CKFinder doesn't come up.
Configuration code (for CKEditor) after calling CKFinder has no effect.
Questions:
- Has someone else the same / a similar problem?
- Where can I find additional error infos?
- Could someone post a working example?
- Was there an important change in the CKFinder configuration (config.php)?
Here is my PHP code fragment (works for "CKEditor 3.3.0 + CKFinder 1.4.3" but not for "CKEditor 3.3.0 + CKFinder 2.0.0":
print '<script type="text/javascript">';
# CKEditor: define CKEditor
print 'var editor = CKEDITOR.replace("editor1");';
# html generation: full HTML page (with <html>, <head> and <body> tags)
print 'CKEDITOR.config.fullPage = true;';
# CKFinder: define CKFinder
print 'CKFinder.SetupCKEditor(editor, "/ckfinder/");';
# toolbar: define toolbar
print "CKEDITOR.config.toolbar =" .
"[" .
# "['Source','-','Save','-','Preview','-','Templates']," .
"['Source','-','Save','-','Preview']," .
"['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt']," .
"['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat']," .
"['Link','Unlink','Anchor']," .
"['Image','Flash','-','Table','-','HorizontalRule','Smiley','SpecialChar','PageBreak']," .
"['ShowBlocks']," .
"'/'," .
"['Styles','Format','Font','FontSize']," .
"['TextColor','BGColor']," .
"['Bold','Italic','Underline','Strike','-','Subscript','Superscript']," .
"['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','-','CreateDiv']," .
"['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock','-','About']," .
"];";
# Automatically enable the "show block" command when the editor loads.
print 'CKEDITOR.config.startupOutlineBlocks = true;';
# CKEditor: maximize CKEditor
print 'CKEDITOR.on("instanceReady", function(evt) {evt.editor; editor.execCommand("maximize");});';
print '</script>';
Thanks for any support ...

Re: CKEditor 3.3 and CKFinder 2.0 not working
It seems that has changed the way to configure too.
I use ASP with CKEditor 3.3.0 + CKFinder 1.4.3 without problems, but CKFinder 2.0 not work for me.
Problem is not with CKEditor 3.3, but with settings CKFinder 2.0.
Tank´s
Luis Carlos - Brazil
Re: CKEditor 3.3 and CKFinder 2.0 not working
Read the upgrading docs: http://docs.cksource.com/CKFinder_2.x/D ... /Upgrading
Re: CKEditor 3.3 and CKFinder 2.0 not working
Doesn't work for CKEditor 3.3.0 and CKFinder 2.0.o:
And this works ("setup" instead of "Setup"):
Re: CKEditor 3.3 and CKFinder 2.0 not working
I did the same thing!!