I have installed it the and now it finally works, but I keep getting a syntax error. You can see the result here:
http://forum.greatcorners.com/editor.php
editor.php:
<?php include("modules/FCKeditor/fckeditor.php"); ?>
<html>
<head>
<title>Editor</title>
</head>
<body>
<?php
$oFCKeditor = new FCKeditor ;
$oFCKeditor->Value = 'This is same <B>sample text</B>.' ;
$oFCKeditor->CreateFCKeditor( 'EditorDefault', '100%', 150 ) ;
?>
</body>
</html>
RE: Keep getting syntax error
It's quite simple: just remove the two links to not-existing .js-files in the head-tag of fckeditor.html:
<script language="javascript" src="/fckeditor.config.js"></script>
<script language="javascript" src="/fckeditor.custom.js"></script>