Tagged Questions
The mod-fcgid tag has no wiki summary.
5
votes
5answers
685 views
PHP programming seg fault
I've been programming a site using:
Zend Framework 1.11.5 (complete MVC)
PHP 5.3.6
Apache 2.2.19
CentOS 5.6 i686 virtuozzo on vps
cPanel WHM 11.30.1 (build 4)
Mysql 5.1.56-log
Mysqli API 5.1.56
...
4
votes
1answer
211 views
PHP error “No input file specified” when calling tinyMCE from a symlink
I use tinyMCE with the PHP compressor. I would like to have it in a single folder, used by all the domains needing it on my server, instead of a copy for each site. However, since I know it's not ...
4
votes
4answers
5k views
Why does my simple fastCGI Perl script fail?
I'm not of the Perl world, so some of this is new to me. I'm running Ubuntu Hardy LTS with apache2 and mod_fcgid packages installed. I'd like to get MT4 running under fcgid rather than mod-cgi (it ...
4
votes
1answer
1k views
Perl & mod_fcgid- how can I be sure it's working?
I have a couple Perl scripts I'm taking public soon, and I want to make sure they'll run under mod fcgid in order to keep the server load as low as possible. Previously, I've only ever run scripts ...
2
votes
4answers
920 views
CherryPy (or other Python framework) with FastCGI on shared host
I am trying to configure the Python mini-framework CherryPy with FastCGI (actually fcgid) on Apache. I am on a shared host, so I don't have access to httpd.conf, just htaccess. I have followed these ...
1
vote
6answers
125 views
PHP Include Always Fails
Apache HTTP Server 2.2.21 with VirtualHosts under SuExec
PHP 5.3.8 via fcgid
Arch Linux 2011.08.19
I am in the process of migrating from shared hosting to VPS. The code I had ran fine before the ...
1
vote
0answers
178 views
fread timeout with 'mod_fcgid: read timeout from pipe'
I have an issue with a URL my application is trying to access timing out. I am trying to catch this timeout and to solve this problem am using this code:
$timeout = 120;
if(false == $handle ...
1
vote
1answer
163 views
Sleeping php processes (mod_fcgid) counsuming RAM rapidly
I hope that this is the right place to ask this question, so:
We are running a Debian (virtualized) server with Apache running php as fcgi. Today the administrator told me that the processes are ...
1
vote
2answers
3k views
mod_fcgid: can't apply process slot for error
update: Just looked at the cache update times of long queries and they did not collide with server crash time.
update2: Found the cause of the problem. Ad server is down and the server hangs even ...
1
vote
1answer
209 views
Reload mod_fcgid without killing Python Service
I'm currently running a Django project on my school's webserver with FCGI. I did follow the multiple guides that recommends installing a virtual local Python environment and it worked out great. The ...
0
votes
0answers
6 views
reg fast cgi and cpp clarification
I am developing a sample using c++ which will get request from lighttpd webserver using fcgi protocol and process the request and send the response to client.
I could not able to fetch the query ...
0
votes
0answers
33 views
Space in ScriptAlias in httpd.conf prevents start of fcgi process
I am having troubles with the current apache httpd (2.2.21) and mod_fcgid (2.3.6) versions. In my project, it is possible that the ScriptAlias directive in the httpd.conf can contain spaces because ...
0
votes
0answers
160 views
Apache, mod_fcgid, windows, and python configuration
I am working on configuring apache2.2 and mod_fcgid for python running on the windows platform. I'm having difficulty, as I am not able to trace any reason for the configurations to fail.
Here is my ...
0
votes
0answers
354 views
FCGID for PHP setup on Windows Server 2008 (mod_fcgid: ap_pass_brigade failed in handle_request_ipc function)
I'm running a VPS with Apache 2.2,PHP 5.3.6 and MySQL 5.1 with mod_fcgid/2.3.6 on Windows Web Server 2008 R2 and I'm having some FCGID issues.
The main issues I am getting are:
[Thu Jul 21 12:41:56 ...
0
votes
0answers
138 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
1answer
125 views
Run fast cgi program through web browser
I have created a hello FastCGI prog in C
#include <fcgi_stdio.h>
#include <stdlib.h>
int count;
void initialize(void)
{
count=0;
}
int main(void)
{
initialize();
while ...
0
votes
1answer
261 views
Trouble configuring trac to work with Apache2 [closed]
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.
I can get it to work via tracd but I'm probably going to have multiple projects and I ...
0
votes
0answers
126 views
Initializing an Apache/FastCGI web.py application
I am hosting a web.py application in Apache using FastCGI (mod_fcgid specifically). It appears that my web.py application does not actually get started until the first request is made through Apache. ...
0
votes
1answer
236 views
Apache userdir + suEXEC + fcgid doesn't recognise dot separeted useraccounts
I've setup Apache with suEXEC, fcgid and userdir to enhance overall website security.
Everything works expect for useraccounts with a "." between their accountnames. Before using suEXEC and fcgid, ...
0
votes
2answers
186 views
fastCGI application code structure
I am writing a fastCGI application using the fastCGI development kit on Linux (Ubuntu), using Apache 2.2 + mod_fcgid.
According to the document, the correct code structure for an fastCGI app is:
...
0
votes
1answer
358 views
Connection Reset by peer: mod_fcgid:
When I try to run a program in PHP using domPHP API to create PDF files in runtime - with Godaddy server, I am getting the message - Connection Reset by peer: mod_fcgid
the same work in our local ...
0
votes
1answer
289 views
can't import own django module using fcgi
I'm running a django app through fcgi on my school's shared hosting system. Everything works initially (standard start page shows when I view the directory with index.fcgi) but when I add a module ...
0
votes
2answers
774 views
how-to apache 2.2 mod_fcgid set python path
i have trouble with seting the python path or any other enviroment variable for mod_fcgid (solaris 10, glassfish apache 2.2)
I have it set in apache, but nothing in os.environ in the fcgi script:
...
-1
votes
1answer
32 views
reg fcgi and c++
I am developing a sample using c++ which will get request from lighttpd webserver using fcgi protocol and process the request and send the response to client.
I could not find any samples using fcgi ...