Hello,
I just try to use the CKEditor. I just got this implemented, but it just point out some special letters as questenmarks.
I just need to get "§ äöüßÄÖÜ" as usual letters.
First I was searching through the www about this. There I found some points, that I only have to change or add some notes to the config.js. All my changes are listen bellow:
CKEDITOR.editorConfig = function( config ) {
config.language = 'de';
config.uiColor = '#000000';
config.entities = false;
config.basicEntities = false;
config.entities_latin = false;
config.entities_additional = '';
config.htmlEncodeOutput = true;
};
Nothing helps. I just added charset="latin1" to the cast:
<script type="text/javascript" src="./operatoren/ckeditor/ckeditor.js" charset="latin1"></script>
it doesn't changed anything.
What do I have to do, that there is a way to display my special characters? All my documents and the whole database is set up in latin1.german1.ci
I cant figure out where I have to tell CKEditor, to interprete the letters right.
greets,
Shalec