1. I have a problem with adding new FCKConfig.ToolbarSets
I have written in fckconfig.js:
and start with:
$oFCKeditor->ToolbarSet = "Laura";
When I start FCKE, I have an error: "Laura" toolbar does not exist...
But when i write:
$oFCKeditor->ToolbarSet = "Default";
or
$oFCKeditor->ToolbarSet = "Basic";
it works good!
2.
Is it any function/plugin in FCKE to upload image and automatly make a thumbnail with link to full size image?
Thanks!
I have written in fckconfig.js:
FCKConfig.ToolbarSets["Laura"] = [
['Source','DocProps','-','Save','NewPage','Preview','-','Templates'],
['Cut','Copy','Paste','PasteText','PasteWord'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
'/',
['Bold','Italic','Underline','-','Subscript','Superscript'],
['OrderedList','UnorderedList','-','Outdent','Indent','Blockquote','CreateDiv'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
['Link','Unlink'],
['Image','Flash','Table','SpecialChar','PageBreak'],
'/',
['TextColor'],
['FitWindow','ShowBlocks'] // No comma for the last row.
] ;
and start with:
$oFCKeditor->ToolbarSet = "Laura";
When I start FCKE, I have an error: "Laura" toolbar does not exist...
But when i write:
$oFCKeditor->ToolbarSet = "Default";
or
$oFCKeditor->ToolbarSet = "Basic";
it works good!
2.
Is it any function/plugin in FCKE to upload image and automatly make a thumbnail with link to full size image?
Thanks!

Re: Questions for my first FCKE use
2. CKFinder
Re: Questions for my first FCKE use
Thank you!
Re: Questions for my first FCKE use
Re: Questions for my first FCKE use
lol. indeed i had put a '/' where it shouldn't be.
Pretty stupid of mine actually, but thanks a lot for your reply!