OK, to install PSpell do that following (taken from php.net):
Quote:
Configuration
RedHat 7.2 (installed without pspell/aspell)
php4.2.1 (DSO), pspell .12.2, aspell .33.7.1, Apache 1.3.24 (mod_ssl)
cd aspell
# I did not specify a prefix
./configure
make
make install
cd pspell
# I did not specify a prefix
./configure
make
cd modules
./add-modules
cd ..
make
make install
# For ldconfig /usr/local/lib was not in it?s path, so I had to edit
/etc/ld.so.conf and add: /usr/local/lib
ldconfig -v
cd ..
cd php
./configure --with-pspell=/usr/local \
--other config options etc
make
make install
|