Я просто переключился на серверы cpanel с godaddy. Я полностью интегрирован с pspell, и он отлично работает. Теперь я получаю следующие ошибкиГде находятся библиотеки aspell, расположенные на сервере? Как я могу проверить их?
Warning: pspell_new(): PSPELL couldn't open the dictionary. reason: No word lists can be found for the language "en".
Это мой код
$pspell_config = pspell_config_create("en");
pspell_config_personal($pspell_config, "/home/user/public_html/custom.pws");
pspell_config_repl($pspell_config, "/home/user/public_html/custom.repl");
$pspell_link = pspell_new_config($pspell_config);
error_reporting(E_ALL);
@ini_set('display_errors', 1);
// Call it once first because of a bug in Windows' Aspell.
pspell_new('en');
$test = pspell_new('en');
echo '
Testing pspell.... ', pspell_check($test,'thisisnotawordandyouknowit') ? 'failure' : 'pass', '.<br />
If no error messages were displayed, Aspell is installed and working properly.';
Как расположены языковые файлы на своих серверах или испытание для них? Я позвонил godaddy, и они сказали, что aspell настроен, и я тестирую свой php, и он говорит, что pspell включен.