Questions tagged [fastcgi]

FastCGI is an open interface web servers can use to execute applications in a secure and isolated manner.

FastCGI is an open interface web servers can use to run applications as separate isolated processes. It is an enhancement of the original NCSA CGI interface specification, with a range of improvements. The primary improvement over the standard CGI approach offered by FastCGI is performance, hence the name.

FastCGI is supported by a broad range of Web Servers (such as Apache, nginx, lighttpd).

730 questions
0
votes
1 answer

How to I track how many php-cgi processes are in use

I'm running apache 2.2 with PHP 5.2 in FastCGI mode with mod_fcgid. The platform is RedHat Enterprise Linux 5.5 x86_64. I have my minimum and maximum fastcgi slaves set to 35. How do I track how many php-cgi processes are busy at a certain point in…
edgester
  • 583
  • 1
  • 5
  • 15
0
votes
1 answer

Switch to FastCGI from Apache php support disabled mod_deflate

After i was told by my server providers support staff to swtich to FastCGI from Apache php support, i later found out that mod_deflate stopped working, it was working fine before the switch. My static files were delivered without being gzipped. I…
VicePrez
  • 153
  • 1
  • 4
0
votes
1 answer

Help installing fastCGI on linux

I run the following: $ cd /opt/mod_fastcgi-2.4.6 $ cp Makefile.AP2 Makefile $ make top_dir=/etc/httpd $ make install I keep getting this error when I run make: -bash: make: command not found What is going on?
John
  • 123
  • 2
  • 2
  • 4
0
votes
2 answers

Apache2-Prefork & FastCGI

I Have Apache2-Prefork running using mod_php and php 5.2. And i also have php-fpm with php 5.3 running inside a chrooted environment (listening to an unix socket which would be reachable for apache) Can someone please guide me how i have to…
Florian F
  • 307
  • 3
  • 13
0
votes
2 answers

PHP as FastCGI: Custom php.ini not working

I'm running PHP as FastCGI (I needed multiple versions of PHP). .htaccess AddHandler php5-fastcgi .php Action php5-fastcgi…
John S.
  • 1
  • 2
0
votes
3 answers

Optimizing fastcgi + php5

Running a debian system with lighttpd, php5, xcache and fastcgi. 2GB ram, 2 cores, less than 10% cpu load in 5 min averages peak time, less than 1GB of ram in use. The system runs a custom build webapp that scrapes flight search sites, no caching…
3molo
  • 4,330
  • 5
  • 32
  • 46
0
votes
3 answers

Apache and growing files

I have a FastCGI script which starts creating a file for request and sends redirection header to the client with location of a new file just after a first pice of that file has been written to the HDD. Everything works fine but when client request a…
0
votes
2 answers

How can I set up Trac to run on a webserver?

I'm setting up Trac for a project on a Windows Server 2003 which already has Apache2.2 and Virtual SVN already installed and in use. I managed to install Trac and run it on its in built stand alone server but I can't seem to get it to run on the…
Cle13
0
votes
1 answer

Can't configure trac to work with Apache2

I've been trying to set up trac to be deployed with apache for a little while now and I'm running into a wall. This is the response I'm receiving from my server Internal Server Error The server encountered an internal error or misconfiguration and…
Casey Flynn
  • 217
  • 4
  • 13
0
votes
1 answer

How to install mod_fastcgi.so into apache

How do I get the mod_fastcgi.so module and load it into apache2? I need it for a deployment of trac. Thanks!
Casey Flynn
  • 217
  • 4
  • 13
0
votes
1 answer

The FastCGI process exceeded configured activity timeout

I have fast cgi installed on my iis, and i get this when debugging php site, I already set the php ini to have a long timeput, where is the fast cgi config? what to change?
Chen Kinnrot
  • 191
  • 1
  • 1
  • 6
0
votes
1 answer

How to correctly use the NginX location directive?

I am attempting to use the phpmyadmin package installed via apt on Ubuntu 10.10 with NginX and although I eventually got it to work, I don't think I'm doing it correctly: server { listen 80; ## listen for ipv4 server_name vpsnet.dev; …
0
votes
1 answer

Prevent CGI Timeout in Apache with PHP

I have a PHP process which the user runs in the browser, but tends to take a fairly long time - upwards of 5 minutes. We just switched to a new server, and when we try to run the script now, it consistently times out at 4 minutes exactly, sending to…
Aaron Marks
  • 3
  • 1
  • 3
0
votes
1 answer

Segmentation fault lighttpd

Hey guys, I can't figure this out, when I add the fastcgi module to lighttpd when I try to connect to a php page, I get a segmentation fault error. Nothing is in the error log, and nothing else is printed on the crash. It seems to only be a problem…
Jess
  • 389
  • 1
  • 6
  • 16
0
votes
2 answers

How can I run fastcgi through nginx as user ww-data?

My django app saves images and they're being saved as nobody:nobody instead of www-data: like they previously were under a different server. nginx is setup as user www-data and I ran the manage.py runfcgi as root so permission shouldn't be an…
Ryan Detzel
  • 707
  • 3
  • 7
  • 21