hello

this is a simple way to add fck, just as we did with sNewsCMS v1.6,
after install the fck.
open snews.php -->
find form_article() function,
find line and comment it out:
echo html_input('textarea', 'text', 'txt', $frm_text, l('text'), '', '', '', '', '', '2', '100', '', '', '');
find and comment out --> buttons() function:
buttons();
Add under it the FCK code
////////////////////
include("fckeditor/fckeditor.php");
///////////////////////////////////////////////
echo "<div class=\"editor\">";
$oFCKeditor = new FCKeditor('text') ;
$oFCKeditor->BasePath = '/snews_root_dir_here/fckeditor/';
$oFCKeditor->Value = stripslashes($r['text']);
$oFCKeditor->Width = '98%' ;
$oFCKeditor->Height = '550' ;
$oFCKeditor->ToolbarSet = 'Default' ;
$oFCKeditor->Create() ;
echo "</div>";
////////////////////
a bit after that, find the preview div and comment it out:
echo '<div class="adminpanel">';
echo html_input('fieldset', '', '', '', '', '', '', '', '', '', '', '', '', '', '<a title="'.l('preview').'" onclick="toggle(\'preview\')" style="cursor: pointer;">'.l('preview').'</a>');
echo '<div id="preview" style="display:none;"></div>';
echo '</fieldset>
</div>';
that is all

awesome day