Встановлення

If you have the libraries needed add the --with-pspell[=dir] option when compiling PHP.

Зауваження: Note to Win32 Users

Щоб це розширення працювало у Windows, системна змінна PATH повинна мати доступ до файлів DLL. Як це зробити, написано в ЧаПах під назвою "Як додати PHP-теку до PATH у Windows". Хоча копіювання DLL-файлів з PHP-теки в системну теку Windows теж спрацює (тому, що системна тека зазвичай є в змінній PATH), проте цього не слід робити. Це розширення вимагає, щоб наступні файли були в PATH: aspell-15.dll from the bin folder of the aspell installation.

Win32 support requires at least aspell version 0.50.

add a note

User Contributed Notes 1 note

up
0
chapman at wtinds dot com
4 years ago
If you are compiling v7.3.x under CentOS 8, you will need to first enable PowerTools, then install aspell-devel - otherwise aspell-devel will not be available to you:

sudo dnf config-manager --set-enabled PowerTools
sudo dnf install -y aspell-devel

Then in your configure line, just use:

--with-pspell

NOT

--with-pspell=/some/dir
To Top