You must enable FCKEDITOR in admin/includes/init_includes/init_html_editor.php. Copy this file to admin/includes/init_includes/overrides/init_html_editor.php and replace this code:
Code:
/**
* List of installed editors should be here:
* CONSTANTS are used for language-specific display names, and are defined in languages/extra_definitions/editors_list.php
*/
$editors_list['NONE'] = array('desc' => EDITOR_NONE, 'handler' => '', 'special_needs' => '');
$editors_list['HTMLAREA'] = array('desc' => EDITOR_HTMLAREA, 'handler' => 'htmlarea.php', 'special_needs' => '');
// $editors_list['FCKEDITOR'] = array('desc' => EDITOR_FCKEDITOR, 'handler' => 'fckeditor.php', 'special_needs' => '');
// $editors_list['TINYMCE'] = array('desc' => EDITOR_TINYMCE, 'handler' => 'tinymce.php', 'special_needs' => '');
by
Code:
/**
* List of installed editors should be here:
* CONSTANTS are used for language-specific display names, and are defined in languages/extra_definitions/editors_list.php
*/
$editors_list['NONE'] = array('desc' => EDITOR_NONE, 'handler' => '', 'special_needs' => '');
$editors_list['HTMLAREA'] = array('desc' => EDITOR_HTMLAREA, 'handler' => 'htmlarea.php', 'special_needs' => '');
$editors_list['FCKEDITOR'] = array('desc' => EDITOR_FCKEDITOR, 'handler' => 'fckeditor.php', 'special_needs' => '');
// $editors_list['TINYMCE'] = array('desc' => EDITOR_TINYMCE, 'handler' => 'tinymce.php', 'special_needs' => '');