Hi, im having a bit of bother trying to get pspell to work with PHP 4 i get the following error.
Warning: PSPELL couldn't open the dictionary. reason: Unable to load the "aspell" module. in /usr/local/apache/htdocs/nictest.html on line 8
Aspel is not compiled as a php module as i couldn`t get it to compile is this the problem or is it something with my code ?
<!-- code -->
$pspell_config = pspell_config_create ("en");
$pspell_link = pspell_new ("en");
if (pspell_check ($pspell_link, "testt")) {
echo "This is a valid spelling";
} else {
echo "Sorry, wrong spelling";
}
In advance, thanks.
Nic.