> > Can't locate STDLIB.pm in @INC (@INC contains: ../ C:/Perl/lib > C:/Perl/site/lib .) at D:\web\cgi-bin\scripts\admin\admin.pl line 35. > BEGIN failed--compilation aborted at D:\web\cgi-bin\scripts\admin\admin.pl > line 35. >
If 'STDLIB.pm' is indeed located in 'D:\web\cgi-bin\scripts\' (or in the same folder as the script) then you probably need to find out what perl thinks is the cwd. It may be different to what you (and I) expect. Can IIS affect that ? ....... I dunno. use Cwd; my $cwd = getcwd(); print $cwd; Another option might be to specify the absolute path to 'STDLIB.pm' in the 'use lib()'. Cheers, Rob _______________________________________________ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs