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.

Post new comment

  • Lines and paragraphs break automatically.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters shown in the image.
Comment