epanagio

Well-Known Member
May 26, 2012
50
1
58
cPanel Access Level
Website Owner
I am trying to integrate tinymce in a website and it requires apsell. I looked in WHM and I couldn't figure out how to do it.

I tried to :

yum install aspell-eng and...
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
* base: mirror.cs.vt.edu
* extras: mirror.thelinuxfix.com
* updates: mirrors-pa.sioru.com
base | 3.7 kB 00:00
extras | 3.4 kB 00:00
updates | 3.4 kB 00:00
Setting up Install Process
No package aspell-en available.
Error: Nothing to do

How do I install aspell?

Thanks,

Evan
 

cPanelMichael

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

You can enable the "Pspell" PHP module under the "Exhaustive Options List" for PHP via EasyApache. Then, check to ensure "aspell" is installed:

Code:
which aspell
aspell -v
If it's installed, you will then need to setup 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.