Hosting Customer Forums

Full Version: pspell?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
(server 11, re: pspell library)

Spell checking once worked with my forum software, but now it says it doesn't seem to be installed. Did you discontinue this? It isn't a big deal, but it was cool to have. I'm not sure when it was discontinued - possibly when you reinstalled the servers Smile

(also, the other forum (99c) isn't working - keeps barfing giving a SQL error when logging in)
Hi,

pspell should be enabled by default. Is it working now?
(06-02-2010 09:51 PM)oshs Wrote: [ -> ]Hi,

pspell should be enabled by default. Is it working now?

Doesn't appear to be. SMF (forum software) is saying it isn't there and won't work. It was working a couple months ago. I ran phpinfo but it didn't say anything about it, using my browser to look for "spe" (for spell) but it didn't find anything.

It isn't a huge deal, but is one of those things that would be nice to have if it wasn't a load or security thing.

EDIT: I found a test script and it says "Call to undefined function pspell_new()..." so it isn't installed or enabled.

Test script...

Code:
<?php
echo 'TEST';
$pspell_link = pspell_new("en");

if (pspell_check($pspell_link, "Testt"))
    echo "Spelled right";
else
    echo "Sorry, wrong spelling";

?>
Reference URL's