Questions tagged [mod-fcgid]
127 questions
1
vote
0 answers
apache suexec + php + fcgid does not log errors
Strangely my apache does not log errors anymore ever since I managed to enable fcgid and suexec for php processing. Even simple files with only dwakdnawjkdn(); ?> won't create any error, even though they do return a 500 error.
My…

alex
- 417
- 1
- 7
- 10
1
vote
1 answer
mod_fcgid + Python + Apache 2.2 / RHEL 5 : output to error_log, not browser
I'm trying to get a Django + mod_fcgid setup working (mod_wsgi is tricky as I have a statically-linked Python. Don't ask.) While this was trivial on my Mac OS X development box, getting it running on the server has, so far, proven impossible.
With…

Nate
- 229
- 4
- 9
1
vote
0 answers
File permission problems with Apache, FastCGI, and Prestashop
I am running a Prestashop installation on CentOS 6.5 and Apache 2.2.15. A while back I updated Apache and lost the ability to upload product images via Prestashop backoffice along with other problems, such as permission problems with the cache…

tokih
- 11
- 2
1
vote
1 answer
apache2 with mod_fcgid randomly hangs
I have had this config running on ubuntu 11.10 for more than one year. I had to move the service to a larger server, so I made a complete copy of the os disk with clonezilla and restored it to the new server.
I upgraded the OS on the new server to…

Klein
- 11
- 1
1
vote
1 answer
trac: "Internal server error (500)" with mod_fcgid and mod_suexec
I try to setup Trac on a shared server with shell access, SW is Trac 1.0.1, Python 2.6.6, Apache 2.2.15 with mod_fcgid and mod_suexec.
I've set it up following the instructions from the wiki of my hoster, https://uberspace.de/dokuwiki/cool:trac…

panne
- 21
- 5
1
vote
1 answer
mod_fcgid error after upgrading from PHP5.3 to 5.4
I just made an upgrade from PHP 5.3 to 5.4 via dotdeb.org sources.
After that, I get errors on vhosts with active FastCGI-Application.
[Mon May 20 21:05:15 2013] [warn] [client xxx.xxx.xxx.xxx] (104)Connection reset by peer: mod_fcgid: error reading…

Mischa
- 145
- 1
- 9
1
vote
1 answer
When getting "Premature end of script headers" in Apache error log, is it possible to also log the GET arguments sent to the script?
I have a single PHP script on a fairly high traffic server that is throwing off a lot of errors of this sort:
(104)Connection reset by peer: mod_fcgid: error reading data from FastCGI server
Premature end of script headers: script.php
However, for…

Nathan Stretch
- 181
- 2
- 15
1
vote
2 answers
Connection reset by peer: mod_fcgid: error reading data from FastCGI server Issues
Help is greatly needed for our server. We are experiencing random "Connection reset by peer: mod_fcgid: error reading data from FastCGI server" errors which cause a 500 internal server error. If the page is then reloaded it loads normally as it…

user145857
- 19
- 1
- 1
- 3
1
vote
0 answers
Enabling mod_fcgid results in 403
I have an EasyPHP 12.1 setup (latest) on Windows 7x64 and I'm trying to enable mod_fcgid for PHP. I have added the following in my httpd.conf
Include conf/extra/httpd-vhosts.conf
LoadModule fcgid_module modules/mod_fcgid.so
FcgidInitialEnv PHPRC…

laggingreflex
- 139
- 2
- 10
1
vote
2 answers
Apache: graceful kill fail, sending SIGKILL. How much is too much?
On Apache/2.2.15, is it normal to have one or two "[warn] mod_fcgid: process XXXXX graceful kill fail, sending SIGKILL" per day? After all it's a warning, not an error.
Thanks

Gaia
- 1,855
- 5
- 34
- 60
1
vote
3 answers
Wordpress (nginx cache + Apache + fcgid) pegging all 8 CPUs
I have a WordPress multi-user site that pegs all of my CPUs at more than 90% usage:
top - 12:02:58 up 55 days, 5:25, 10 users, load average: 20.51, 15.66, 14.90
Tasks: 294 total, 24 running, 270 sleeping, 0 stopped, 0 zombie
Cpu0 :…

ptn777
- 115
- 1
- 1
- 4
1
vote
1 answer
Suphp and mod_fcgid on one server
Hi is it possible? My script not work with mod_fcgid, but work with suphp so I would like run one domain with suphp and other with mod_fcgid+xcache on one server. I don't want run every sites with suphp because xcache don't work with it.

Kamil
- 11
- 2
1
vote
1 answer
Setting Trac with Apache and mod_fcgi results in either 404 or 403
I am trying to create a trac installation on my private server in order to use it for project management.
I followed the instructions for installation and connecting to the apache server that can be found at the official trac installation guide but…
Kiril
1
vote
1 answer
Logging PHP (fcgid) requests separate from static
With a server running Apache and PHP via mod_fcgid, I'd like to log all requests handled by PHP into a separate file so that I can get a better idea of which requests are going through PHP versus being handled directly through the filesystem.
This…

tylerl
- 15,055
- 7
- 51
- 72
1
vote
1 answer
PHP with suexec/fcgid
httpd.conf file:
LoadModule fcgid_module modules/mod_fcgid.so
AddHandler fcgid-script .php
FCGIWrapper /usr/local/php5 .php
# manual
MaxRequestsPerProcess 1000
FcgidMaxProcesses 200
FcgidProcessLifeTime 7200
MaxProcessCount 500
FcgidIOTimeout…

Jane
- 13
- 3