Today, I downloaded and installed the latest version of the ckeditor plugin and v1.5.4 of the cart from this site. The ckeditor folder is in the editors directory and the ckeditor.php file is in the includes folder. The CKeditor was not showing in the dropdown select tool on the configuration page so I had to hack the admin/includes/init_includes/init_html_editor.php on line 48 to read:
PHP Code:
if (true) $editors_list['CKEDITOR'] = array('desc' => EDITOR_CKEDITOR, 'handler' => 'ckeditor.php', 'special_needs' => '');
from
PHP Code:
if (is_dir(DIR_FS_CATALOG . DIR_WS_EDITORS . 'ckeditor') $editors_list['CKEDITOR'] = array('desc' => EDITOR_CKEDITOR, 'handler' => 'ckeditor.php', 'special_needs' => '');
Even though the ckeditor is selected, there are no toolbars on any text modification area.
Bookmarks