1
vote
3answers
136 views

IIS 7.5 Mercurial setup ignoring maxAllowedContentLength

I'm trying to setup Mercurial on IIS 7.5. I have a web.config for an application directory that is ignoring the maxAllowedContentLength attribute and I simply cannot get IIS to accept it! I've tried ...
0
votes
0answers
48 views

Trying to get Strawberry Perl to run on IIS 7.5

If this is not the correct form for this question please direct me to a more useful form I am new to using perl on a web server. I am trying to get Strawberry Perl to work on the windows IIS 7.5 ...
0
votes
1answer
46 views

Modify ISAPI and CGI extensions

I have a problem with IIS server, How can I modify ISAPI elements with using C# language? Forexample : ASP.net V4.0 restriction is "Not Allowed". And I want to set as "Allowed" like below picture. ...
2
votes
1answer
133 views

Microsoft Azure appending extra query string to urls with query strings

In deploying a version of the Django website I'm working on to Microsoft's Azure service, I added a page which takes a query string like ...
0
votes
0answers
44 views

Spawn a subprocess in a cgi environment without stalling the script

I'm using python as a CGI interperter. My script gets some data in POST from the user, kicks up a video encoding job, and returns a session ID for the client side to use later. The encoding job is ...
0
votes
1answer
140 views

CGI on IIS8, Program Hanging

I have read several articles on how to enable CGI use on my IIS8 server. I have configured ISAPI and CGI Restrictions to allow unspecified CGI modules and set the CGI to execute permissions. When I ...
0
votes
0answers
38 views

What happens if the user executes a cgi-script again (on IIS)

I got a c++ cgi-program(on an IIS7) which handles input from an HTML-form. My question is what happens if the user presses the submit button a second time before the first request is answered? Does ...
0
votes
1answer
104 views

CGI in Java - Legacy but interesting (for educational purposes)

I folks: I know that CGI is jurassic and before all of you call me lunatic, I must say that this question is only for EDUCATIONAL PURPOSES (in real cases I use JSP). I'm trying to code a "Hello ...
0
votes
1answer
92 views

How do I set ISAPI/CGI option in Windows 7 Home Premium?

This article explains how to correct an exception that's often seen when switching an ASP.NET application to .NET 4.0. However, I don't have this option in IIS when using Windows 7 Home Premium. ...
0
votes
1answer
1k views

Plesk 9.5 IIS 7 Fast CGI timeout error 500

I'm running the following setup: - Windows 2008 web edition - IIS 7 - Plesk 9.5 - FastCGI PROBLEM DESCRIPTION When running a script that takes longer than 30 seconds, I get the 500 internal server ...
1
vote
2answers
2k views

WordPress on IIS 7 php-cgi hogging CPU

Running WordPress on IIS 7 (Windows Server 2008) with WP-SuperCache as per IIS.net's guide. Was running great but recently we changed the permissions on some folders and the administrator password ...
0
votes
1answer
242 views

Running a cgi perl script as an Administrator

I'm writing a perl script for a website, and I need to be able to control VirtualBox via the website. I'm not sure where to start, or if I'm even trying to debug in the right area, but here goes. My ...
1
vote
0answers
156 views

Concurrent requests to PHP using FastCGI on IIS

Some of my PHP script might run for a long time, 10 seconds or so. I noticed that other requests have to wait until the previous request is processed. That makes the site unresponsive for a while. ...
0
votes
0answers
138 views

What do I need to configure in order to exacute PHP's function exec with IIS6 (Internet Information Services)?

I'm trying to run the following command: system('cscript c:\\windows\\system32\\iisvdir.vbs /create W3SVC/1/ROOT test123 C:\\webserver\\Apache2.2\\htdocs\\richietest'); Or exec('cscript ...
0
votes
1answer
175 views

Fckeditor file upload CGI error in IIS 6

I'm getting the error below when uploading files through Fckeditor on IIS server. Its fine with Apache. Error in CGI Application The specified CGI application misbehaved by not returning a ...
0
votes
3answers
180 views

Which is the prefered CGI technology?

I want to develop a cgi application that has to run under windows and linux (IIS and Apache) What is the best technology to do that? I would prefer java, but i am not sure if there is a problem with ...
1
vote
2answers
453 views

How to completely background a process in Perl CGI under IIS

Thanks to some other great posts here (like this and that), I have several reliable methods to background a process in a Perl script. However, in my environment (IIS6 on Windows Server 2003), it ...
1
vote
3answers
235 views

Need CGI (or another solution compatible with IIS 7) to handle *massive* uploads

We need to handle massive file uploads without spending resources on an IIS 7 server. To emphasize how light-weight this needs to be, let's say that we need to handle file uploads of sizes that are ...
0
votes
1answer
393 views

Header status not working in php cgi

Setting the Status header is not working in PHP CGI. I am using PHP on the IIS webserver. header('HTTP/1.1 404 Not Found'); header('Status: 404 Not Found'); Do you have any ideas why this might not ...
4
votes
3answers
1k views

Mercurial / IIS / No module named osutil

I am trying to get Mercurial to be hosted via "hgweb.cgi" on IIS 7.5. I have everything configured according to http://www.jeremyskinner.co.uk/mercurial-on-iis7/ except for that I installed python 2.6 ...
0
votes
2answers
685 views

Delphi CGI (IIS 7.5, Win 7): The system cannot find the file specified

I have a CGI application (Delphi 7). At some point it goes through this code: FileMode := fmOpenRead or fmShareDenyWrite; AssignFile( user_file, FULL_PATH_TO_USER_INFO_FILE_NAME); {$I-} Reset( ...
1
vote
1answer
220 views

IIS6 kills python cgi script after printing 401 header?

Win2k3 sp2 w/ ii6, python7 configured as a script mapping (detailed later). New to python, using the following code works as expected: import logging as log import time import win32api ...
1
vote
1answer
4k views

How to configure CGI on IIS 7?

I did this as explained here but it was for IIS 6 http://rebolforum.com/index.cgi?f=printtopic&topicnumber=39&archiveflag=new I also activated 32 bits for application pool as explained ...
2
votes
1answer
2k views

Why do I get a “Bad Gateway” error with my Perl CGI program on IIS?

I'm trying to run sample Perl script on Windows 7 and I configured IIS 7 to allow ActivePerl to run but I'm getting this error: HTTP Error 502.2 - Bad Gateway The specified CGI application ...
0
votes
1answer
421 views

Why do I get assembly bind failure in IIS CGI program

I have a C# program that is running as a CGI app in IIS on XP Pro SP3. It runs fine until I reference a library assembly class and use it in the program's code. If I run the CGI program by hand it ...
0
votes
2answers
186 views

Not enough storage error on CGI app under Win64

I have a Delphi (hence 32-bit) CGI app running on a Windows 2008 64-bit server that has 24 Gb RAM with IIS7. The web service runs fine for a few days at a time (sometimes a few weeks) and then ...
1
vote
1answer
2k views

Can't see WSDL on Delphi CGI with IIS7

I created a very simple Delphi 2010 CGI web service and am able to get the exact same problem on Delphi 2007. My invokable interface looks like this: ISimpleTest = interface(IInvokable) ...
4
votes
2answers
8k views

Configuring IIS 6.0 to execute cgi(.exe)

I already create a virtual directory (cgi-bin) with permission : Scripts and Executable... When I test : http://localhost/cgi-bin/mapserv.exe, I got 404 error, The page cannot be found Am I supposed ...
1
vote
1answer
1k views

Seting up Python on IIS 5.1

I have this test python file import os print 'Content-type: text/html' print print '<HTML><HEAD><TITLE>Python Sample CGI</TITLE></HEAD>' print '<BODY>' print ...
1
vote
4answers
1k views

How do I set LC_ALL and LANG under IIS?

I am trying to run some Perl CGI scripts under IIS. I get the following message : CGI Error The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it ...
4
votes
2answers
1k views

Why do I need to explicitly output the HTTP header for IIS but not Apache?

I am trying to set up apache instead of IIS because IIS needlessly crashes all the time, and it would be nice to be able to have my own checkout of the source instead of all of us editing a common ...
3
votes
4answers
2k views

How can I limit execution time for a Perl script in IIS?

This is a shared hosting environment. I control the server, but not necessarily the content. I've got a client with a Perl script that seems to run out of control every now and then and suck down ...
0
votes
2answers
955 views

python cgi on IIS

How do you set up IIS so that you can call python scripts from asp pages? Ok, so I found the answer to that question here: http://support.microsoft.com/kb/276494 So on to my next question: How do ...