I am in the process of switching from the old FCKeditor, 1.x to 3.x. I have it working with PHP5, but I have not figured out how to change the configuration in spite of reading the docs and this forum. Here is what I have so far and it works, but not switching to the Basic toolbar:
<?
$oCKeditor = new CKeditor();
$oCKeditor->BasePath = 'ckeditor/' ;
//$oCKeditor->Config['ToolbarSet'] = 'Default';
$oCKeditor->Config['ToolbarSet'] = 'Basic';
$oCKeditor->Width = 500;
$oCKeditor->Height = 300;
$oCKeditor->editor('CKeditor', $email_body);
?>
Suggestions are welcomed...
Thank you,
Todd
<?
$oCKeditor = new CKeditor();
$oCKeditor->BasePath = 'ckeditor/' ;
//$oCKeditor->Config['ToolbarSet'] = 'Default';
$oCKeditor->Config['ToolbarSet'] = 'Basic';
$oCKeditor->Width = 500;
$oCKeditor->Height = 300;
$oCKeditor->editor('CKeditor', $email_body);
?>
Suggestions are welcomed...
Thank you,
Todd

Re: How to switch ToolBar from Default to Basic
Try this :
Re: How to switch ToolBar from Default to Basic
I would like get an overview of "path" from startup to reading configuration to final display. Is there documentation on that?
Again, thank you...
Todd
Re: How to switch ToolBar from Default to Basic
$oCKeditor->config['toolbar'] = 'Basic';
works and
$oCKeditor->config['toolbar'] = 'Default';
does not? When I use 'Default", there is no ToolBar?!?
Thank you...
Todd
Re: How to switch ToolBar from Default to Basic
The declaration of the Toolbar is in the file config.js but the syntax has changed.
http://docs.cksource.com/ckeditor_api/s ... lbar_Basic
Re: How to switch ToolBar from Default to Basic
Todd