RE: Cgi on IIS

2002-01-19 Thread SSloan
Couple of additions to my posting: > 1. A Virtual Directory called cgi-bin within your web site. It doesn't have to be called cgi-bin - though that is the normal name for the script directory. The Virtual Directory has to have the name that you are going to access via, as in: http://your_web_site/

RE: Cgi on IIS

2002-01-19 Thread Gary Hawkins
> 1. A Virtual Directory called cgi-bin within your web site. That was great. Just a couple points, the directory can be called cgi-bin but doesn't need to be. I made the same changes to one called 'store' tonight on NT4 and it works. Secondly for security reasons I've heard it generally recom

RE: Cgi on IIS

2002-01-19 Thread ss004b3324
Hi Maureen, > I set up this cgi file and html form on a Unix server. The script > changes a user's password in a text file. > > This works correctly on a Unix Server. However, I need to move these > files to an IIS server. > In testing on the IIS server, I get an HTTP Error 405- Method not > all

RE: Cgi on IIS

2002-01-18 Thread Gary Hawkins
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

Re: Cgi on IIS

2002-01-17 Thread K.L. Hayes
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

Re: Cgi on IIS

2002-01-16 Thread Lorne Easton
Hi Robert, Right click on the servername and choose "Properties". Choose "Home Directory" and choose "Configuration" under "Application Settings". You can edit your application mappings from the "App Mappings" tab. These should have been set up for you if you installed perl after IIS, but you w

Re: Cgi on IIS

2002-01-16 Thread Johnathan Kupferer
Hanson, Robert wrote: >It's been a long time since I worked on IIS, but I believe the "Method not >allowed" error refers to GET, POST, PUT, and HEAD. In IIS you can >allow/deny each of these, but I forget exactly where in the MMC that this >was located, it was with the file types. > >So maybe ".

RE: Cgi on IIS

2002-01-16 Thread Hanson, Robert
It's been a long time since I worked on IIS, but I believe the "Method not allowed" error refers to GET, POST, PUT, and HEAD. In IIS you can allow/deny each of these, but I forget exactly where in the MMC that this was located, it was with the file types. So maybe ".cgi" doesn't have GET access