FastCGI is a protocol for interfacing interactive programs with a web server. FastCGI is a variation on the earlier Common Gateway Interface (CGI); FastCGI's main aim is to reduce the overhead associated with interfacing the web server and CGI programs, allowing a server to handle more web page ...

learn more… | top users | synonyms

2
votes
1answer
61 views

FCGI & url issues while moving from Hiawatha

We are moving from Hiawatha webserver to Lighty. I want to make this transfer as transparent as possible without making any change to FCGI application. In Hiawatha, we have a configuration line in ...
2
votes
1answer
162 views

How do i get errors in from a Perl script running FCGI.pm to appear in the Apache error log?

As follows is an example script: #!/usr/bin/perl use FCGI; my $request = FCGI::Request(); while($request->Accept() >= 0) { die "test"; } I'd expect this to print "test" to the Apache ...
2
votes
1answer
145 views

Django on Apache with FCGI - 500 internal server error under high load

I'm using Windows Server 2008, Apache 2.2 Python 2.7 and Django as FCGI server FCGI server is started as s service with SrvAny: python c:\amebas_site\amoeba\manage.py runfcgi host=127.0.0.1 ...
2
votes
1answer
215 views

Wanting to run multiple Django setting files under one fcgi instance

At the moment I'm running a Django application that is the same for all of my clients. Each client has its own subdomain e.g.: http://client1.myapp.com/ http://client2.myapp.com/ client1 has a ...
1
vote
1answer
88 views

FCGI and upload_tmp_dir PHP directive are not working correctly

I run PHP as FCGI! I'm setting upload_tmp_dir option as value /home/domain.com/tmp. When executed phpinfo() for double-check it's confirmed that the settings above are correct. Nevertheless, when ...
1
vote
1answer
78 views

Rails Install fcgi on my mac

I'm using Rails 3.2 and ruby 1.9.2. I've added gem 'fcgi' (fastcgi) to my Gemfile, but when I run bundle install it fails on the fcgi. output: Installing fcgi (0.9.1) with native extensions ...
1
vote
1answer
367 views

passing env variables to fcgi (perl)

I have an apache 2 webserver running with mod_fcgid. CGI scripts are executed by passing some environment variables and then exec'ing a perl program, eg: index.cgi: #!/bin/sh export TEST_VAR=test ...
1
vote
1answer
550 views

How to configure lighttpd bin-path parameter with flup/python

I am running lighttpd 1.4.26 on Ubuntu 10.04 with Flup 1.0.3 dev version. When setting up mod_fastcgi, I can successfully get lighttpd to communicate with the fcgi process on a local socket if I ...
1
vote
1answer
182 views

How to close TCP connection when invalid user trying to POST large file?

I wrote a simple HTTP responding C++ program using http://www.fastcgi.com library + nginx web-server. It works almost great. But I noticed that fcgi's function int FCGX_Accept_r(FCGX_Request ...
1
vote
1answer
306 views

Exactly how long do Django/Python/FastCGI Processes last?

I have been working on a website in Django, served using FCGI set up using an autoinstaller and a custom templating system. As i have it set up now, each View is an instance of a class, which is ...
0
votes
1answer
43 views

how to run/start redmine in fastcgi in dreamhost

Im using dreamhost (fastcgi as recommended in wiki-dreamhost-redmine) and install redmine over it. With webrick its working perfectly, however i see it's not recomended to keep production in webrick, ...
0
votes
1answer
53 views

Trouble with static files on deployment server

I can't seem to figure out how to let my Django app access my static files now that my app is on my deployment server and Debug mode is turned off. I've used python manage.py collectstatic to collect ...
0
votes
1answer
81 views

Django in a Subdirectory using fcgi

I'm trying to avoid having to somehow add a context_processor to add the base url of my project to every url I use in all of my templates. My django project is nestled under a subdirectory(lets call ...
0
votes
1answer
51 views

Problems with fcgi socket via supervisor

I run django application via supervisor. Command: manage.py runfcgi daemonize=false method=prefork socket=/tmp/django.sock pidfile=/tmp/django.pid The application runs as django user. ls -al ...
0
votes
1answer
232 views

PyCharm 2.7 + django 1.4.3 + can't import flup.sever.fcgi_fork

OS: Windows 7 Django: 1.4.3 Actions Taken: Upgraded from PyCharm 2.6.3 to PyCharm 2.7 Opened a project that was working perfectly fine on PyCharm 2.6.3. Ran manage.py run under PyCharm Received ...
0
votes
1answer
88 views

Confused about the FCGI concept

I'm currently trying to implement a small FastCGI multi-threaded application that runs on linux. I use the library from fastcgi.com. Now I'm not sure if I really understand the concept how the FCGI ...
0
votes
1answer
100 views

What is the correct way to start endless threads when django is run as fcgi?

I want to use pyinotify to watch changes on the filesystem. If a file has changed, I want to update my database file accordingly (re-read tags, other information...) I put the following code in my ...
0
votes
1answer
63 views

What is the most stable release of Satchmo?

I am running, or trying to run, Satchmo 9.2, and deployment is turning out to be a slightly bigger challenge than I bargained for. I've errored out on fcgi, admittedly probably due to my own ignorance ...
0
votes
1answer
56 views

mapserver 5.4.2 fcgi error

I'm trying to compile mapserver 5.4.2 on a solaris machine and I'm running into problems. I'm using the following configure parameters: ./configure --prefix=$HOME/local/apps/mapserver-5.4.2 \ ...
0
votes
1answer
1k views

apache error: mod_fcgid: can't apply process slot for

I have server with Debian 6,Apache 2.2.16,php 5.3.7. Whereon runs two page first.net - many visit user, second.net - much less page visit. When restart apache2,that run both page ok, but after few ...
0
votes
1answer
270 views

HTTP Authentication with PHP running as FCGI

I Cannot get the basic HTTP Authentication to work in PHP which is installed and working as FCGI. It works perfectly when PHP is installed as a module though. Is there any way I can get it to work ...
0
votes
1answer
372 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
294 views

Rewriting rails url from port 3000?

i have an applicaiton that runs at actionengineers.com:3000. How do i reqwite the application to a subdomain or directory (actionengineers.com/myapp) without disturbing the main site of course. i ...
0
votes
1answer
740 views

PHP Processes reaching limit along with FastCGI timeouts

I have a problem similar to http://stackoverflow.com/questions/1168384/how-to-troubleshoot-php-processes, but with a twist. We have a couple of managed servers that recently migrated to FastCGI. Since ...
0
votes
1answer
794 views

Fast CGI, Lighttpd, Ubuntu

Is this log file familiar to someone of UBUNTU users? Lighttpd log file: > 2009-08-30 21:37:45: (log.c.75) server started > 2009-08-30 21:37:45: (mod_fastcgi.c.1029) the fastcgi-backend ...
2
votes
0answers
30 views

Connecting application in C to a html form using FCGI

I have a html form with hardcoded data.i have added the index file to iis as a website and made it run in the browser.now instead of hardcoding d data i wan to send the input data to form from C or ...
2
votes
0answers
124 views

configure mongo c++ driver code in fcgi c++ program

I and trying to connect mongo c++ driver code with fcgi c++ code which i found on this site http://www.nongnu.org/fastcgipp/ my code is as follows . ...
2
votes
0answers
1k views

dispatch.fcgi and ruby on rails using rvm

I'm trying to just get a "hello world" application working on my hosting service (Dreamhost) using rvm. I'm using rvm so that I can use Ruby 1.9.2 and Rails 3.1 I recognize there are better hosting ...
2
votes
0answers
292 views

Error while starting dispatch.fcgi

I got this while trying to execute dispatch.fcgi in a dreamhost shared server I dont know how to figure out a solution. How can i find the exact line that causes my this error? Exception `LoadError' ...
1
vote
0answers
85 views

Python on nginx using fcgiwrap - upstream closed prematurely FastCGI stdout while reading response header from upstream

I am trying to get a hello world python script to run on my nginx web server. I am getting a "502 Bad Gateway" error when I try and load up the URI: http://sub.dom.com/py-bin/hello.py This is the ...
1
vote
0answers
100 views

Running web.py on Dreamhost

I am trying to set up web.py on Dreamhost using this guide: Web.py - Dreamhost Wiki My problem is that many pages on this topic refers to fcgi.py and links to a svn repository that no longer exists. ...
1
vote
0answers
222 views

How do I use FCGI with Python (and Django) on Fedora 17?

I'm having trouble accessing my "index.fcgi"; I keep getting a 500 Internal Server Error. Here's my error_log: [Thu Aug 09 19:40:17 2012] [warn] [client 127.0.0.1] (104)Connection reset by peer: ...
1
vote
0answers
137 views

Setting Django on Shared Host with FastCGI

I know this might be a question often asked, but I tried my best for almost a day to launch my first django website with no results, so please anyone experienced with shared hosting and django to ...
1
vote
0answers
687 views

apc under php-fpm not caching files

I currently have apc installed and running under php-fpm. The apc info page reflects user cache entries but the file cache reflects 0 files cached. Other similar threads state that if runnning under ...
1
vote
0answers
137 views

Auto initialization for a django app on apache/fcgi

We are implementing a web service that is hosted in Dreamhost VS, uses Apache with FCGID running a Django application. Our key issue is that the initialization of our application is extreamly long ...
0
votes
0answers
33 views

Django: renders the files in the dir instead of the webpage (of the App)

When hosting on web server, it display a list of files (sort of like what fTP will get) instead of the actual web page: Index of /chart Name Last modified Size Description ...
0
votes
0answers
47 views

HTTP POST request fails over 128k using Django/flup

SO a form I have takes an image and uploads it. This produces an error when the image is over 128k, otherwise it works fine. I don't have the error message, because it tries to render 500.shtml, ...
0
votes
0answers
34 views

PHP fcgi and long read times + large files

Here's the wrinkle. We have a script - part of a Zend Framework app to be exact - that compiles a download from 20-something tables and zips them, then serves them as a zip file to the user (and then ...
0
votes
0answers
59 views

How to configure nginx client and server using two different computers

I have installed nginx on my Ubuntu 12.10 OS .It test runs successfully.I have also shown fcgi file on my nginx server. the whole process which I followed is shown in this question link. configure ...
0
votes
0answers
64 views

PHP-FPM fastcgi_finish_request reliable?

After implementing some post-processing in my php script after a fastcgi_finish_request(); statement, I worry about some discrepancies. Looks like PHP is not executing all the script after ...
0
votes
0answers
83 views

FastCGI with C++ other ways to start than span-fcgi

I'm currently working on a project that involves FastCGI and C++. Now I found the official FCGI Library. I tried out the echo example. /* * echo.c -- * * Produce a page containing all FastCGI ...
0
votes
0answers
114 views

Django on Fastcgi - Static folders on shared hosting

I'm running Django version 1.4 on a shared hosting plan on hostgator. When i copy and paste the admin folder in the django directory in the public_html directory, the CSS works fine. How can i make ...
0
votes
0answers
87 views

code only works with dso

i have iinstalled this page script in my server http://www.johnboy.com/php-upload-progress-bar/ i have noticed that it works only with DSO .i have mode_fcgid installed . i tried with all other four ...
0
votes
0answers
269 views

Endless redirect with RewriteRule for my fcgi-powered rails app

i can access my rails app via http://example.org/fcgi-bin/goto/ Now i want access mit app directly from http://example.org/ So i've created this RewriteRule in my .htaccess: RewriteEngine On ...
0
votes
0answers
623 views

SoapClient PHP 5 got 500 internal Server Error

Here my code : <?php $soap = new SoapClient("------"); $soap->__getFunction(); // Runing OK $soap->__call("SendSMS",array("abc", "abc", "abc", "abc", "abc")); //500 Internal error ...
0
votes
0answers
130 views

Persistent connections to IBM DB2 multiplying out of control

We have a setup where we're using PHP/FCGI on nginx to connect to a DB2 database. We're using persistent connections. The host database can only cope with a maximum of open connections. We spawn 6 ...
0
votes
0answers
115 views

php - any way to do “real” fascgi?

I have been using perl and ruby in a fcgi setting and was planning to migrate a large code base of php from mod_php to fcgi, I looked at the php site and saw they supported fcgi and 5.3 has fpm to ...
0
votes
0answers
273 views

Problem accessing python wsgi server response running fastcgi protocol from urllib(python)

I am building an application where I have a web server set up running on fast-cgi. This server is supposed to return results incrementally. I want to query this server from another server which runs ...
0
votes
0answers
293 views

Sudden problems with using dispatch.fcgi with an old rails application

I'm maintaining an old rails application that was working just fine until recently. I believe it uses fcgi and lighttpd on Debian for deployment. Normally when release a new version, I restart ...
0
votes
0answers
382 views

debugging a django app on a server running fcgi

I developed my django app on my local machine, however when I uploaded it to my server (dreamhost, runnig fcgi) I got some problems. How can I debug django on my dreamhost server that's running fcgi? ...

1 2