PDA

View Full Version : spellchecker still in control panel?


fruitsalad
Thu 24th May '01, 8:37pm
Howcome the spellcheck options for language still exist in the change options of the admin eventhough the feature has been removed for now?

Wayne Luke
Fri 25th May '01, 2:24am
Because it doesn't hurt anything.

fruitsalad
Fri 25th May '01, 4:16am
fair enuff... :)
I was leaning towards expecting a custom spellchecking system by jelsoft:o

Fquist
Fri 25th May '01, 10:23am
$words = array('load', 'dictionary', 'peanuts'...);

$word = split(" +", $message);

$count = count($word);

for ($i = 0; $i < $count; $i++;) {

if (in_array($words, $word[$i])) {

YES!

} else {

NO!

}

}


custom spellchecker! yay!

klisis
Fri 25th May '01, 12:41pm
Originally posted by Fquist
$words = array('load', 'dictionary', 'peanuts'...);

$word = split(" +", $message);

$count = count($word);

for ($i = 0; $i < $count; $i++;) {

if (in_array($words, $word[$i])) {

YES!

} else {

NO!

}

}


custom spellchecker! yay!

:rolleyes: ;) :p :rolleyes: :o

thewitt
Fri 25th May '01, 3:52pm
Just came across this link. Looks like a great place to start.

http://www.zend.com/zend/spotlight/spellchecking.php

-t

Fquist
Fri 25th May '01, 4:29pm
Yes, but that would require people to have the pspell module.

thewitt
Fri 25th May '01, 5:11pm
Originally posted by Fquist
Yes, but that would require people to have the pspell module.

..and that's a problem because...?

JamesUS
Fri 25th May '01, 5:15pm
The pspell module is fairly rare to be installed on shared servers and most hosts wouldn't be willing to install it for you.

thewitt
Sat 26th May '01, 12:07pm
Ah, I misunderstood the installation brief when I first read it.

pspell installs inside PHP as a new PHP module...

Never mind.

-t