Hello all,

This response is coming a little late, I know, but here goes.

In the IIS Management tool, the folder below "Web Sites" in the left pane,
which is labeled "Web Service Extensions", locate the perl extension and
enable/allow it.  By default, IIS Prohibits most of the items in this
folder. If there is no perl item listed, uninstall perl and install perl 5.8
as this version automatically adds itself to this area of IIS.

See:
http://aspn.activestate.com/ASPN/docs/ActivePerl/faq/Windows/ActivePerl-Winfaq6.html#How_do_I_configure_IIS_6
for the details.

-Charles
----- Original Message ----- 
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 18, 2004 2:05 PM
Subject: Perl-Win32-Web Digest, Vol 5, Issue 3


> Send Perl-Win32-Web mailing list submissions to
> [EMAIL PROTECTED]
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web
> or, via email, send a message with subject or body 'help' to
> [EMAIL PROTECTED]
>
> You can reach the person managing the list at
> [EMAIL PROTECTED]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Perl-Win32-Web digest..."
>
>
> Today's Topics:
>
>    1. Windows 2003 Server problem (Craig Norris)
>    2. RE: Windows 2003 Server problem (henry isham)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Fri, 18 Jun 2004 09:10:11 -0400
> From: "Craig Norris" <[EMAIL PROTECTED]>
> Subject: Windows 2003 Server problem
> To: <[EMAIL PROTECTED]>
> Message-ID:
> <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset="us-ascii"
>
> I have a snippet of code I use in a Perlscript I'm using with IIS on a
> Windows NT Server that seems to work fine to see if some network shares
that
> have been mapped to the F and G drives exist.  However, after migrating
the
> code to IIS on Windows 2003 Server, it doesn't seem to work.  Has
something
> changed between versions?  Any help would be VERY appreciated.
>
>
>
> Thanks!
>
> Craig Norris
>
> MetaMAP, Inc.
>
>
>
> $fexst = 0;
>
> $gexst = 0;
>
> if (opendir(DIR, 'f:\\frankortho\\')) {
>
>  $fexst = 1;
>
>  closedir DIR;
>
> }
>
> if (opendir(DIR, 'g:\\images\\')) {
>
>  $gexst = 1;
>
>  closedir DIR;
>
> }
>
>
>
>
>
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
http://ASPN.ActiveState.com/ASPN/Mail/Browse/Threaded/perl-win32-web/attachments/20040618/47529e15/attachment-0001.htm
>
> ------------------------------
>
> Message: 2
> Date: Fri, 18 Jun 2004 09:17:06 -0400
> From: "henry isham" <[EMAIL PROTECTED]>
> Subject: RE: Windows 2003 Server problem
> To: "Craig Norris" <[EMAIL PROTECTED]>,
> <[EMAIL PROTECTED]>
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset="utf-8"
>
> Server 2003 and IIS security have changed dramatically. You need to
configure your IIS to run scripts. Further, you may need to do the Perl
equivalent of RunAs (maybe WMI "impersonate") from your script using a user
that has access to the F:\ drive.
>
> -H.
>
> -----Original Message----- 
> From: [EMAIL PROTECTED] on behalf of Craig
Norris
> Sent: Fri 6/18/2004 9:10 AM
> To: [EMAIL PROTECTED]
> Cc:
> Subject: Windows 2003 Server problem
>
>
>
> I have a snippet of code I use in a Perlscript Iâ?Tm using with IIS on a
Windows NT Server that seems to work fine to see if some network shares that
have been mapped to the F and G drives exist.  However, after migrating the
code to IIS on Windows 2003 Server, it doesnâ?Tt seem to work.  Has
something changed between versions?  Any help would be VERY appreciated.
>
>
>
> Thanks!
>
> Craig Norris
>
> MetaMAP, Inc.
>
>
>
> $fexst = 0;
>
> $gexst = 0;
>
> if (opendir(DIR, 'f:\\frankortho\\')) {
>
>  $fexst = 1;
>
>  closedir DIR;
>
> }
>
> if (opendir(DIR, 'g:\\images\\')) {
>
>  $gexst = 1;
>
>  closedir DIR;
>
> }
>
>
>
>
>
>
>
>
> ------------------------------
>
> _______________________________________________
> Perl-Win32-Web mailing list
> [EMAIL PROTECTED]
> To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
>
>
> End of Perl-Win32-Web Digest, Vol 5, Issue 3
> ********************************************
>


_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to