HI!
The FCK Editor seems changes the contents of pages saved in utf-8 file encode (please note I am not talking about page encode but the file encode) method. Whatever contents written between <head> tag moves to <body> enclosed with a <p> tag when open by the FCK editor.
Steps that you will see the issue is described in the WORD doc in attached zip. Please help me to resolve this problem.
Thanks in advance for any help
Cheers!
Kasun
The FCK Editor seems changes the contents of pages saved in utf-8 file encode (please note I am not talking about page encode but the file encode) method. Whatever contents written between <head> tag moves to <body> enclosed with a <p> tag when open by the FCK editor.
Steps that you will see the issue is described in the WORD doc in attached zip. Please help me to resolve this problem.
Thanks in advance for any help
Cheers!
Kasun

Re: Pages contents get changed when saved in utf-8 file encode
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Re: Pages contents get changed when saved in utf-8 file encode
In source view the BOM characters are not shown. Open the saved file in a hex-aware editor and look for  in the paragraph.
I test for the 3 BOM characters and remove them from the start of the file. When the file is saved the BOM are re-added at the start of the file automatically.
This seems to be a common problem in working with the editor.
In ASP I use the functions midB to get the first 3 characters and ascB to get their numeric codes. In acsB the BOM () are "239 187 191". In hex they are EF BB BF.