Hi erslht,
Can you try the example below? it works fine for me. Is your site online? If so, can you send me the test page url? So I can check it too.
<?php include_once("cuteeditor_files/include_CuteEditor.php") ; ?>
<html>
<head>
</head>
<body>
<form ID="Form1">
<?php
$editor=new CuteEditor();
$editor->ID="Editor1";
$editor->ActiveTab="View";
$editor->Text="this is a test!";
$editor->Draw();
$editor=null;
?>
</form>
</body>
</html>
Regards,
Ken