aspell

cofigure phplist spellcheck for firefox

PHPList comes with FCKeditor as the gui default editor. However, by default it is setup so that the spellcheck is only available to IE users. To enable for other browsers such as Firefox, follow the below directions:

  1. Edit admin/fckphplist.php:
  2. Replace all instances of:
    FCKConfig.SpellChecker      = 'ieSpell' ;

    with:

    FCKConfig.SpellChecker      = 'SpellerPages' ;

  3. Edit admin/.htaccess and add "spellchecker.php" to the list of files to allow access to.
  4. If this is a linux box, then make sure aspell is installed. Edit "admin/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php" and update the aspell program path:

    $aspell_prog    = '/usr/bin/aspell';

That should do it.

Syndicate content
Comment