It doesn't appear that $editor->EditCompleteDocument=true; And $editor->BaseHref="http://www.URL.com"; work together
Here's my code...
<?php
$editor=new CuteEditor();
$editor->ID="Editor1";
$editor->FilesPath="CuteEditor_Files";
$ClientID=$editor->ClientID();
$editor->URLType="Absolute";
$editor->EditCompleteDocument=true;
//with it set like this, BaseHref won't work, but if you comment this line out, BaseHref WILL work
$editor->BaseHref=
http://www.imvo.org;
$editor->Draw();
$editor=null;
?>
Thanks,
Kyle