Roundcube Community Forum

SVN Releases => SVN Discussion => Topic started by: smurf on June 01, 2007, 05:41:13 AM

Title: Spell Checker on Windows?
Post by: smurf on June 01, 2007, 05:41:13 AM
Hi Guys,

We're getting errors with the text and HTML (tinyMCE) spell checkers on the most recent SVN build whilst running on Windows 2003. The text spell checker runs but does not actually correct any spellings, the TinyMCE editor returns an AJAX routine error.

Has anyone had any success on getting the spell checker working on Windows? Are we missing something obvious?

Thanks for any help!
Title: Re: Spell Checker on Windows?
Post by: Florianer on June 01, 2007, 05:53:25 AM
Hi,

can't agree in total. The text spellchecker in textmode is working (svn 587). It opens a window with correction suggestions. All I have to do now, is to choose the right one I want to.
If I'm writing an HTML message with tinyMCE using this spellchecker, FireFox 1.5.0.12 crashes. I guess, it is all the same which kind of Windows you are using. (Just for me: Make this sentence sense?)
Title: Re: Spell Checker on Windows?
Post by: smurf on June 01, 2007, 07:05:32 AM
What settings are you running in your config file? Are you using NOX or default?
Title: Re: Spell Checker on Windows?
Post by: Florianer on June 01, 2007, 07:19:22 AM
Code: [Select]
// Make use of the built-in spell checker. It is based on GoogieSpell.
$rcmail_config['enable_spellcheck'] = TRUE;

// For a locally installed Nox Spell Server, please specify the URI to call it.
// Get Nox Spell Server from [url]http://orangoo.com/labs/?page_id=72[/url]
// Leave empty to use the Google spell checking service, what means
// that the message content will be sent to Google in order to check spelling
$rcmail_config['spellcheck_uri'] = '';

// These languages can be selected for spell checking.
// Configure as a PHP style hash array: array('en'=>'English', 'de'=>'Deutsch');
// Leave empty for default set of Google spell check languages
$rcmail_config['spellcheck_languages'] = NULL;

All standard
Title: Re: Spell Checker on Windows?
Post by: smurf on June 01, 2007, 07:36:14 AM
Ok thanks. I'll double check which release we'e running. I assumed a compatiblity issue with Windows.
Title: Re: Spell Checker on Windows?
Post by: smurf on June 27, 2007, 02:28:28 PM
After installing the latest release candidate and SVN build 621 we're still having no joy with the spell checker.

Both the text and html modes appear to run the spell checker and return a 'No incorrect spelling' message on the following text 'thiss is ann incorrectly spellt sentance' - So clearly it should be flagging errors. Is there anything we can do to fix this?

Config is as follows;

Code: [Select]
// Make use of the built-in spell checker. It is based on GoogieSpell.
$rcmail_config['enable_spellcheck'] = TRUE;

// For a locally installed Nox Spell Server, please specify the URI to call it.
// Get Nox Spell Server from [url]http://orangoo.com/labs/?page_id=72[/url]
// Leave empty to use the Google spell checking service, what means
// that the message content will be sent to Google in order to check spelling
$rcmail_config['spellcheck_uri'] = '';

// These languages can be selected for spell checking.
// Configure as a PHP style hash array: array('en'=>'English', 'de'=>'Deutsch');
// Leave empty for default set of Google spell check languages
$rcmail_config['spellcheck_languages'] = NULL;