Cannot get CuteEditor for php to work.

  •  02-26-2008, 9:45 AM

    Cannot get CuteEditor for php to work.

    Here is a test page:
     
    <html>

    <head>
    <title>Test Editor</title>
    </head>

    <body>
    <?php
        $editor=new CuteEditor();
        $editor->ID="frank";
        $editor->Text="Type here";
        $editor->FilesPath="CuteEditor_Files";
        $editor->CustomCulture="en-en";
        $editor->Draw();
        $editor=null;
    ?>
    </body>

    </html>
     
    found at http://www.freefamilypages.com/test.php.   I've followed all the instructions for installing it and it doesn't work. Please don't tell me that you don't see the CuteEditor in the page when you go to this link and look at the source.  Only the code down to the body tag is displayed in the source from the browser.  The remaining code is not sent to the browser!  Why? I've checked php (5.1.6) on our RedHat Linux server and it's working fine with test scripts. I have my license file in place as per instructions. The CuteEditor_Files directory is off of root (public_html) as it should be.  The editor simply doesn't work. Why?

View Complete Thread