Tagged Questions

5
votes
2answers
492 views

What does “Maximal count of pending signals (120) exceeded” mean?

My Perl web-app, running under Apache mod_fastcgi, frequently gets errors like the following: Maximal count of pending signals (120) exceeded at line 119. I've seen this happen in relation to ...
3
votes
2answers
220 views

How are data shared between fastCGI processes?

I've written a simple perl script that I'm running via fastCGI on Apache. The application loads a set of XML data files which are used to lookup values based upon the the query parameters of an ...
2
votes
2answers
357 views

django - nginx+fastcgi --> Unhandled Exception (after upgrade from Django 1.2.4 to Django 1.3)

I just upgraded from django 1.2.4 to 1.3. I'm using nginx in conjunction with fastcgi and for some reason every time when I access a page I get this error: Unhandled Exception An unhandled ...
2
votes
1answer
489 views

Which FastCGI server mode should I choose under Apache?

I am new to FastCGI and looking to use this platform to speed up my existing vanilla CGI (perl) programs. However in reading the FastCGI/Apache FAQ, it appears I can setup my scripts (once converted ...
1
vote
0answers
99 views

FastCGI Configuration errors - upload and image processing fail

My wordpress is behaving strangely, after I changed the php handler to fcgi [Sat Dec 03 02:13:06 2011] [warn] [client 66.249.72.226] (104)Connection reset by peer: mod_fcgid: error reading data from ...
1
vote
1answer
95 views

site not loading after enabling fastcgi in joomla

I am developed one joomla site.It was working good.But site is not loading after enable the FastCGI.I don't understand what the problem is ! Simply it just shows some content only.What is problem ? ...
1
vote
1answer
62 views

Debugging python with mod_fastcgi

I running apache with mod_fastcgi to run python scripts (using Ubuntu OS). How can I debug python with fastcgi? I put a pdb.set_trace() call in my script, but when loading the page in a browser ...
1
vote
1answer
434 views

PHP fastcgi returns 403 on Lighttpd server

I've been agonizing over this issue for the past day now. I've setup lighty on my server and it serves static files fine but keeps giving me 403 on php files. I've gone through every tutorial, wiki ...
1
vote
1answer
147 views

How can I show a maintenance page when my FastCGI app is restarting?

I am serving my FastCGI application in Apache2 using the standalone FastCGI server and the FastCgiExternalServer directive. When I restart my FastCGI app my users get a 500 error. What can I do to ...
0
votes
0answers
45 views

Css not working with FastCGI and Lighttpd

Im new to fastcgi and lighttpd and trying to setup my DJANGO app. facing couple of problems at the moment: CSS not working at all FastCGI is adding its prefix for the requested URL i.e. ...
0
votes
0answers
80 views

Lighttpd, fastcgi, and c++ and why it does not work?

I am running the latest version of lighttpd on ubuntu and I am doing fastcgi using c++. Below is my c++ code and the config file and the error. I suspect the config file. What is wrong? Please ...
0
votes
2answers
151 views

Accessing environment variable in a fastcgi application

I have writen a fastcGI application using C and C++ I have a free function that returns a string, if a specific environment variable has not been set. The function looks like this: namespace { ...
0
votes
1answer
108 views

C++: What script can I use to test my Apache and FastCGI set up?

I asked at serverfault: How to set up apache with fastcgi and a simple test script? I have been having real difficulties for a couple of weeks trying to understand how to set up my machine so that I ...
0
votes
2answers
583 views

Can I get a Java Socket from a file descriptor number?

When a program is started via FastCGI, it is exec'd with a socket already open to talk to the web server. The socket's file descriptor number is handed to the program, but how can that be converted to ...