Author Topic: RC0.2_stable Rechtschreibprüfung Spellcheck  (Read 7537 times)

Offline lacri

  • Full Member
  • ***
  • Posts: 179
    • http://www.php-lexikon.de
RC0.2_stable Rechtschreibprüfung Spellcheck
« on: January 23, 2009, 02:32:09 AM »
Hallo,

Woran könnte es liegen das die Rechtschreibprüfung bei meiner Installation nicht funktioniert, wenn ich auf Rechtschreibung prüfen klicke sowohl English als auch Deutsch sowohl im Text als auch im HTML Modus startet die Prüfung nur passiert dannach nix weiter lediglich die ajax animation läuft und mehr passiert nicht.

Einstellungen sind wie folgt.


// the default locale setting (leave empty for auto-detection)
// RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR
$rcmail_config['language'] = 'de_DE';

// Make use of the built-in spell checker. It is based on GoogieSpell.
// Since Google only accepts connections over https your PHP installatation
// requires to be compiled with Open SSL support
$rcmail_config['enable_spellcheck'] = TRUE;

// Set the spell checking engine. 'googie' is the default. 'pspell' is also available,
// but requires the Pspell extensions. When using Nox Spell Server, also set 'googie' here.
$rcmail_config['spellcheck_engine'] = 'googie';

// For a locally installed Nox Spell Server, please specify the URI to call it.
// Get Nox Spell Server from http://orangoo.com/labs/?page_id=72
// 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, should be defined
// when using local Pspell extension
$rcmail_config['spellcheck_languages'] = array('en'=>'English''de'=>'Deutsch');


Lässt sich das Reproduzieren funktioniert es bei euch ?

Danke für jede Hilfe :)

Offline rosali

  • Hero Member
  • *****
  • Posts: 2,533
RC0.2_stable Rechtschreibprüfung Spellcheck
« Reply #1 on: January 23, 2009, 03:00:48 AM »
Ja, es funktioniert. Es könnte daran liegen, dass in Deiner PHP Installation das Modul CURL nicht eingebunden ist und/oder dass fsockopen keine ssl Verbindungen unterstützt (OpenSSL Einbindung fehlt) ...

PHP: fsockopen - Manual
Quote

hostname
Wenn Sie OpenSSL-Support mit einkompiliert haben, können Sie dem Parameter hostname entweder ein ssl:// oder ein tls:// voranstellen, um eine SSL- oder TLS-Verbindung aufzubauen, die via TCP/IP mit dem entfernten Server verbunden wird.
Regards,
Rosali
__________________
MyRoundcube Project (commercial)

Offline lacri

  • Full Member
  • ***
  • Posts: 179
    • http://www.php-lexikon.de
RC0.2_stable Rechtschreibprüfung Spellcheck
« Reply #2 on: January 23, 2009, 06:20:19 AM »
Es lag an den iptables funktioniert nun einwandfrei.

;)

Danke:)