Adding Personal Dictionary to FCKeditor and Aspell
Has anyone successfully added a Personal Dictionary to Aspell and the FCKeditor.
I have a customer with a lot of Jargon and Customer names which bogs down the Spell Check process.
Accordig to the ASpell.net website it should be possible using the "extra-dicts" option.
ie: -H --add-extra-dicts=aspell.en_US.pws
From what I can tell it should be added to the following file at line 16
C:\Inetpub\wwwroot\CFIDE\scripts\ajax\FCKeditor\editor\dialog\fck_spellerpages\spellerpages\server-scripts\spellchecker.cfm
Default:
<cfset aspell_opts = "-a --lang=#lang# --encoding=utf-8 -H --rem-sgml-check=alt">
I have tried:
<cfset aspell_opts = "-a --lang=#lang# --encoding=utf-8 -H --add-extra-dicts=aspell.en_US.pws">
<cfset aspell_opts = "-a --lang=#lang# --encoding=utf-8 -H --rem-sgml-check=alt -H --add-extra-dicts=aspell.en_US.pws">
Both result in mispelled words not being flagged
