fdnven

Well-Known Member
Feb 14, 2006
120
1
168
Hi,

After installing PSpell via easy apache the module is included with PHP. However no dictionary came thru with the install.
Code:
[email protected] [~]# which aspell
/usr/bin/aspell
[email protected] [~]# aspell -v
@(#) International Ispell Version 3.1.20 (but really Aspell 0.60.6)
[email protected] [~]#  aspell dicts
[email protected] [~]#
Testing with script confirms
Code:
Warning: pspell_new() [function.pspell-new]: PSPELL couldn't open the dictionary. reason: No word lists can be found for the language "en".
I am betting I forgot something..

Thanks
Frank
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,261
463
Hello :)

You will need to install the aspell dictionaries for the languages you require. They are available at:

ftp://ftp.gnu.org/gnu/aspell/dict/0index.html#0.60

Here is an example of the commands you would run to install a dictionary:

Code:
# wget ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-7.1-0.tar.bz2
# tar -xjvf aspell6-en-7.1-0.tar.bz2
# cd aspell6-en-7.1-0
# ./configure
# make
# make install
Thank you.