Wrong Charset in Toolbar

Last post 08-31-2011, 8:47 AM by Kenneth. 1 replies.
Sort Posts: Previous Next
  •  08-31-2011, 6:41 AM 69886

    Wrong Charset in Toolbar

    I changed the language options in include_cuteeditor.php to "de_de".
    in the toolbar I will, however, the special characters ü, ö, ä displayed correctly.
    The site is on a iis 7.5. Do I need to set something there?

    The encoding is set to UTF-8.

    But I need ISO-8859-I, so that it is correctly displayed.

    Does anyone know a solution?
  •  08-31-2011, 8:47 AM 69890 in reply to 69886

    Re: Wrong Charset in Toolbar

    Hi andste72,
     
    Please try the example below
     
    <?php require_once "cuteeditor_files/include_CuteEditor.php" ?>    
    <html>    
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <body>    
            <form id="form1" method="POST">    
                <?php    
                    $editor=new CuteEditor();    
                    $editor->Text="Type here";    
                    $editor->ID="Editor1";    
                    $editor->CustomCulture="de-DE";
                    $editor->Draw();    
                ?>    
             </form>    
    </body>    
    </html>
     
    Regards,
     
    Ken
     
View as RSS news feed in XML