나는 godaddy로 cpanel 서버로 전환했습니다. 나는 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이 활성화되어 있다고 말했습니다.