Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
2k views

mod_perl vs mod_fastcgi

I'm developing a web app in Perl with some C as necessary for some heavy duty number crunching. The main problem I'm having so far is trying to decide if I should use mod-perl, mod-fastcgi or both to ...
5
votes
2answers
484 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
4answers
98 views

deploying a WSGI application on mod_python

I wrote a WSGI application which I need to deploy to a server, however I've been given a server that already has mod_python installed. I am not allowed to remove mod_python since there are some ...
2
votes
2answers
337 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
2answers
209 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
1answer
480 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
73 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
84 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
59 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
390 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
145 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
31 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
36 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
1answer
85 views

Django and fcgi and mod_fcgid errors

Ok I'm exhausted with this problem on my shared server at Bluehost and I haven't been able to find any ideas. I've uploaded my app and everything appears to be working fine except for one thing, ...
0
votes
0answers
139 views

run FastCGI applications through yaws

I am new to both fcgi and yaws. Any pointers to solution for following error would be very helpful I want to run FastCGI applications through yaws. I did following modifications for it in ...
0
votes
2answers
137 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
0answers
431 views

Django, lighttpd, FastCGI — can't get it to work

OK, so I'm having issues trying to run Django on lighttpd with FastCGI. I've followed the instructions here, but still can't get it to work, and am not sure what the problem is. The django project ...
0
votes
1answer
104 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
558 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 ...