Hi Everyone...
This seems to be a common problem that a number of people are running up against. There is a good communication thread on the wysiwygpro site regarding this issue, here is the link:
http://www.wysiwygpro.com/xForum/topic.asp?TOPIC_ID=1399
The issue seems to be a character set conflict, and there are several solutions discussed. Here is the last post that seems to be a correction for the issue:
----------------------------- Begin Other Post -----------------------------------
I had the same problem after a cpanel upgrade. I was bewildered, because other programs that use WYSIWYGPro did not have this problem, only the HTML Editor in cpanel's File Manager.
I tried several of the (very good) suggestions above with no success. I tried changing all charset and encoding references to utf-8 and then I tried making all of them iso-8859-1... still no good.
Then I noticed that if I made an edit using special characters like spanish accents, etc., saved it, then viewed the page in a browser, it was OK. It was only when I opened the file in HTML Editor again, that the strange characters appeared. If I saved, then the strange characters were there when the page was viewed in a browser. If I backed out without saving the file was OK...
So the problem (with cpanel's implementation of WYSIWYGPRO, anyway) is on the way into the editor, not as it is saved.
So I edited the file:
/usr/local/cpanel/base/3rdparty/Wysiwygpro/template
I found the place where it includes editor_class.php and added a line to also include editor_fucntions.php. For example:
include_once ('/usr/local/cpanel/base/3rdparty/WysiwygPro/editor_files/editor_class.php');
include_once ('/usr/local/cpanel/base/3rdparty/WysiwygPro/editor_files/editor_functions.php');
Then further down, where it inserts the code into the editor with the line:
$editor->set_code($body);
I added in a line to use the fixcharacters function before inserting $body into the editor, like this:
$body = fixcharacters($body,'utf-8');
$editor->set_code($body);
That cleared everything up for me.
-------------------------- End other post --------------------------
But, I have no idea how to get at the "/usr/local/cpanel/base/3rdparty/Wysiwygpro/template" file to make this correction? Maybe one of the TotalChoice support experts can help us with this?