[guest - Mon Mar 10 03:32:09 2003]:
Show quoted text> Seems like the module does not work under Mod_Perl correctly. Also
> Windows support seems to be lacking, the Open2 calls do not
> correctly open the ispell command.
I had a problem under mod_perl concerning spawing ispell processes, I
lifted a little fix from the Open Source Live Journal's spellchecker.
In the spellcheck subroutine, add the following lines at the top
# work-around for mod_perl
my $tie_stdin = tied *STDIN;
untie *STDIN if $tie_stdin;
I'm very new to perl and I'm not sure if that's the correct/ideal
solution, but it fixed it for me.
--Matt