#!/usr/bin/perl -w use strict; use Lingua::Ispell qw( :all ); use Data::Dumper; print "Content-type: text/html\n\n"; # W: is the server mapped on my local machine, which works. # When I switch drive letter to the server, it fails. $Lingua::Ispell::path = 'W:/utils/cygwin/usr/local/bin/ispell.exe'; my $checkString="Perl"; for my $results(spellcheck($checkString)){print Dumper($results);}