Maybe the file name has a .cgi extension? .cgi is not set for exeeute by
default. Try renaming it .pl assuming you installed ActivePerl. Or in
Internet Services Manager right click the scripts folder, and take a look at
the instructions in the attached mail of few days ago. I'm figuring that'l
Hello Maureen,
The only time I've seen the HTTP Error 405- when submitting a form is
when I've inadvertently used action="post" instead of action="POST"
which I see you've done in your script.
I must have banged my head on that for over an hour before I figured
it out. Hope this helps.
--
Best
--- Mark Bergeron <[EMAIL PROTECTED]> wrote:
> This could be. When running under
>
> #!/usr/bin/perl -wT
>
> Too late for -T
>
> I'm running 626 on Win2K Pro IIS
Mark,
If you see my reply to Eric Wang in this thread, I describe how to get around this
problem.
Basically, what's going on is t
This could be. When running under
#!/usr/bin/perl -wT
Too late for -T
I'm running 626 on Win2K Pro IIS
-Original Message-
From: "Curtis Poe"<[EMAIL PROTECTED]>
To: "CGI Beginners"<[EMAIL PROTECTED]>
Date: Wed Aug 15 09:50:54 PDT 2001
Subject: R
--- Eric Wang <[EMAIL PROTECTED]> wrote:
>
> So I can actually use a CGI to carry out the perl script in the front end
> and put the -T inside the cgi right? and the users cannot see which perl
> script was executed because it's on the server site.
> Is that right?
>
> eric
Eric,
You'll have t
So I can actually use a CGI to carry out the perl script in the front end
and put the -T inside the cgi right? and the users cannot see which perl
script was executed because it's on the server site.
Is that right?
eric
On Wed, 15 Aug 2001, Curtis Poe wrote:
> --- Mark Bergeron <[EMAIL PROTECT
--- Mark Bergeron <[EMAIL PROTECTED]> wrote:
> Taint won't run on Win32 anyway.
Mark,
This is actually a common misconception. Taint checking works just fine on Win32 using
ActiveState Perl. Try the following from the command line:
perl -Te "$x=shift;open TEST, qq/>$x/" test.txt
You will
Taint won't run on Win32 anyway.
-Original Message-
From: "Curtis Poe"<[EMAIL PROTECTED]>
To: "CGI Beginners"<[EMAIL PROTECTED]>
Date: Tue Aug 14 15:02:40 PDT 2001
Subject: Re: CGI on IIS <- bad idea?
>--- Eric Wang <[EMAIL PROTECTED]>
--- Eric Wang <[EMAIL PROTECTED]> wrote:
> Thanks! can you explain what does the taint option do?
> I usually just use #!/script/perl.exe
>
> Thanks for your help!
> eric
Eric,
If you enable taint checking, any data coming into your program from outside of the
program is
considered "tainted".