The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
9 views

Should I include mod_fastcgi directive in every virtual host? or httpd.conf is enough?

I'm configuring mod_fastcgi on my vps. I put main directive in httpd.conf (ubuntu 12.04): <IfModule mod_fastcgi.c> Alias /php5.fastcgi /var/www/fastcgi/php5.fastcgi AddHandler ...
0
votes
1answer
33 views

Web site - delay under Apache 2.4.4 x64 FastCGI

I'm running a VPS server under Windows 2008 R2 x64 as a web server. I Was running Apache 2.2 x86 / Php 5.3.1 handle with the standard php5_module And I made an upgrade to Apache 2.4.4 x64 / Php ...
0
votes
1answer
31 views

Nginx not parsing php when using try_files

I am basically trying to implement the Apache MultiViews behaviour so that my URLs do not require the .php extension. As far as I can see from other questions answered here on Server Fault, I should ...
0
votes
0answers
16 views

Deploying a FastCGI application

I'm trying to deploy my Wt application with Apache and FastCGI. Here's my config file: <IfModule mod_fcgid.c> NameVirtualHost *:9091 <VirtualHost *:9091> DocumentRoot ...
0
votes
7answers
809 views

mod_fastcgi installation error

I've compiled Apache 2.4.2 successfully, but I'm facing an error while trying to compile mod_fastcgi module. Any tips? root@local:/usr/src/libapache-mod-fastcgi# /usr/local/apache2/bin/apxs -o ...
0
votes
0answers
113 views

Apache mpm-worker, mod_fcgid, OpenX - high load and Error 500

since a few Days we get an 500 Error from Apache. In the error-log from Apache I found the following lines, but I have no idea where the problem is. [Tue Mar 19 13:11:53 2013] [warn] [client ...
0
votes
0answers
95 views

File upload from Android browser to php/fcgi fails on bigger files

When I upload files to my site (centos/apache/php/fcgi) using the stock Android browser, it fails with a 500 error, in the Apache log : (70014)End of file found: mod_fcgid: can't get data from http ...
0
votes
0answers
51 views

Should I use mod_fastcgi or mod_fcgid for PHP and Django?

I would like to use FastCGI to host the program, what are the differences between mod_fastcgi and mod_fcgid? How to decide which to use?
1
vote
2answers
125 views

FastCGI on lighttpd no data received

I have a simple FastCGI script: public static void main (String args[]) { int count = 0; while(new FCGIInterface().FCGIaccept()>= 0) { count ++; ...
0
votes
1answer
39 views

System administration problems

I recently had a problem with a dedicated server (LINUX) where the file system went read-only. Recent modifications include installation of fcgid using PHP 5,2 on certain <VirtualHost> ...
1
vote
0answers
128 views

APC using mod_fastcgi only caching apc.php

I'm on Debian 6.06, using Plesk 11.09, with Apache2 and nginx as reverse proxy. I'm trying to setup the APC, but it seems not to work properly. The APC Webinteface, apc.php, tells me, that APC is ...
0
votes
1answer
233 views

Apache + PHP via FastCGI

I'm running into some problems while attempting to run PHP via FastCGI in Apache. I have the FastCGI module loaded, but get the following error when attempting to load a page: The requested URL ...
0
votes
3answers
2k views

FastCGI and Apache 500 error intermittently

I have a FastCGI (mod_fastcgi)problem. It happens every once in a while, and does not casue a complete server meltdown, just 500 errors. Here are a couple things. First I am using APC so PHP is in ...
0
votes
1answer
1k views

Apache and multiple PHP-FPM pools

I have two sites that I run from apache 2.2 vhosts with PHP-FPM 5.4 on Ubuntu 12.04. Until now I've been using a server-wide (stock) mod_fastcgi config, but now I want to split this into two FPM pools ...
0
votes
1answer
176 views

mod_fcgi produces random 500 Errors

php 5.4.7 via mod_fcgi when I run the site sometimes it works, sometimes it crashed with 500 Internal Error, this is what I see in error.log everytime I run the script [Mon Sep 24 18:50:43 2012] ...
0
votes
1answer
777 views

Apache mod_fastcgi

i am trying to configure an apache2 server with mod_fastcgi on solaris 10 so far i have everything installed using CSW here is my virtual host configuration <VirtualHost X.X.X.X:80> ...
0
votes
0answers
215 views

Recursive redirects with FastGI+FPM on Apache2

I am using Drupal 6 on an Apache2 server with PHP 5, Varnish 3, APC and memcache. OS is Ubuntu 12.04 I am trying to get FastCGI and PHP-FPM working with my configuration and have installed the same ...
1
vote
0answers
100 views

Lighttpd mod_accesslog not logging fastcgi requests

I have recently installed a lighttpd for serving a python script via mod_fastcgi. Everything works fine except that I don't get the requests handled by mod_fastcgi logged in the access.log file ...
1
vote
3answers
2k views

cant install fastcgi ubuntu server: Package libapache2-mod-fastcgi is not available

When i try to install fastcgi in ubuntu server 12.04 I get the following error: sudo apt-get install libapache2-mod-fastcgi Reading package lists... Done Building dependency tree Reading ...
1
vote
1answer
312 views

trying to “setup apache fastcgi”

my system is: wx3# uname -a FreeBSD wx3 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 wx3# packages ...
0
votes
0answers
664 views

Access Forbidden with Prestashop using Apache 2 + PHP-FPM

I've installed Prestashop and configured Apache to work with FastCGI thru PHP-FPM. I thought everything was working fine, and I check a phpinfo file, the "ServerAPI" value is "FPM/FastCGI" instead ...
0
votes
1answer
2k views

Enable Php Fastcgi and Get 500 Internal Server Error (Lighttpd)

anyone can help me? I just got this problem today. Before this my site running smooth with Fastcgi enable but now its show 500 internal server error with below logs. I need to disable php fastcgi in ...
0
votes
1answer
258 views

How to create a very simple external FastCGI configuration in apache?

I have an externally started FastCGI application that listens on socket '/tmp/foo.sock' and a directory of static files in '/srv/static'. Apache has all needed permissions on the socket and the ...
8
votes
2answers
13k views

How to enable error log in lighttpd properly?

I have a Centos 5 system with Lighttpd and fastcgi enabled. It does log access but does not log errors. I have Internal Server Error 500 and no info in log and when I try to open not -existing file ...
3
votes
4answers
2k views

Why does mod_fastcgi in Apache complain that it does not have permission to create server?

This is a very old FastCGI issue but I have never found a satisfactory answer. Searching the phrase "(13) permission denied fastcgi can't create server" on Google will show that there's a lot of ...
0
votes
1answer
580 views

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 ...
0
votes
2answers
2k views

CentOS 5.5 , Apache2.2, PHP 5.2.14, Fastcgi 2.2-4 and 5xx Errors

I am running the version of softwares mentioned in subject. Apache was installed from standard centos repo, fastcgi was install from http://centos.karan.org/kbsingh-CentOS-Extras.repo and PHp was ...
0
votes
2answers
2k views

How to set up apache with fastcgi and a simple test script?

It's been a few days that I'm trying to set up fastcgi with apache on a Kubuntu server. Despite searching everywhere, I cannot make it to work. If I try to run the site with the cgi application, ...
0
votes
1answer
4k views

Make PHP FastCGI process write to a specific error log?

I have a server running Lighttpd with three user's serving domains from it. Each user gets their own PHP FastCGI process for serving PHP content across all of their domains. Lighttpd allows me to ...
0
votes
2answers
2k views

Virtualmin: “PHP execution via fcgid requires the Apache mod_fcgid module”

I have a CentOS server with Virtualmin on it. I have configured PHP the way I want it, using Apache mod_fastcgi. However, when I click "Re-check Config" in Virtualmin, I get PHP execution via fcgid ...
2
votes
1answer
3k views

suexec and docroot problem

I've got a problem with running a FastCgiServer under apache2. When I define a virtual host with a static fcgi server configured, I get an error from suexec: command not in docroot ...
1
vote
2answers
4k views

Disable the timeouts on apache httpd and fastcgi

A debian lenny server, running apache httpd 2.2.11 and fastcgi, kills requests when they take more than a certain amount of seconds. I want to disable this timeout to enable me to debug an application ...
1
vote
1answer
650 views

What's the difference between FastCGI “static” and “dynamic” applications in terms of performance and stability?

I'll like to know what are the things to consider when choosing between configuring an app as static or as dynamic in an Apache 2 server that uses mod_fastcgi. The app is a typical reporting app ...