DanTheAspMan (talk | contribs) (debug strange characters problem saving files in ANSI not UTF-8) |
DanTheAspMan (talk | contribs) (to resolve the problem of strange characters, you need to save as ANSI and set Session.CodePage = 1252, Session.LCID = 1040) |
||
(One intermediate revision by one other user not shown) | |||
Line 21: | Line 21: | ||
Then upload the files to the server, empty the cache and reload the page. | Then upload the files to the server, empty the cache and reload the page. | ||
− | We are a web-agency in Italy, I'm not sure if that matters but, there you have it. | + | We are a web-agency in Italy, I'm not sure if that matters but, there you have it. |
+ | |||
+ | *'''This is not necessarily true'''. All files distributed with the editor should be already encoded properly. If you are having troubles with it, please open a ticket at our [http://dev.fckeditor.net/ dev site]. | ||
+ | |||
+ | _______________________<br> | ||
+ | |||
+ | Well, believe me, it's true for us. In addition, at least here in Italy, you must also insert in the top of the page popup.asp and fckeditor.asp:<br> | ||
+ | |||
+ | <%<br>Session.CodePage = 1252<br>Session.LCID = 1040<br>%><br><br> | ||
+ | |||
+ | <br> |
Latest revision as of 08:48, 27 June 2008
Regarding the Note:
NOTE: An important thing is to save the files in the UTF-8 encoded text format. Otherwise, some strange characters could appear instead of any special characters used by different languages, like accented letters, symbols, etc.
We have found the opposite. In particular the files:
...\FCKeditor\fckconfig.js
and
...\FCKeditor\fckeditor.asp
Must be saved in file format: ANSI
not UTF-8
Open the file with notepad, save as... ANSI encoded text format.
Then upload the files to the server, empty the cache and reload the page.
We are a web-agency in Italy, I'm not sure if that matters but, there you have it.
- This is not necessarily true. All files distributed with the editor should be already encoded properly. If you are having troubles with it, please open a ticket at our dev site.
_______________________
Well, believe me, it's true for us. In addition, at least here in Italy, you must also insert in the top of the page popup.asp and fckeditor.asp:
<%
Session.CodePage = 1252
Session.LCID = 1040
%>