Skip Menu |

This queue is for tickets about the Lingua-Ispell CPAN distribution.

Report information
The Basics
Id: 2199
Status: new
Priority: 0/
Queue: Lingua-Ispell

People
Owner: Nobody in particular
Requestors: ben [...] atmail.nl
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: No Mod_Perl support
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.
From: Matt Jones
[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