I'm having the same problem with 6.0.3. Was it fixed in this version?
I'm using spanish spell check.
My aspell.php:
// Convert to ISO-8859-1
// Next line commented by me
// $text = iconv("UTF-8", "iso-8859-1//IGNORE", $text);
// Check spelling
if (!pspell_check($dictionary, $word)) {
$suggestions = implode(",", pspell_suggest($dictionary, $word));
// Added /IGNORE
$suggestions=iconv("iso-8859-1","UTF-8//IGNORE",$suggestions);
$misspelled .= "$word:$suggestions\n";
This is the only way the spell checker doesn't give me the "illegal character" error, but I'm having the same problem like shown in the posted screenshot.
Thanks! |