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

20
votes
3answers
9k views

mod_php vs cgi vs fast-cgi

I have been trying to understand the exact meaning/purpose of loading php as an apache module vs the rest. When php is installed as an apache module, what exactly happens? For example, does reading ...
18
votes
5answers
8k views

How to gracefully restart django running fcgi behind nginx?

I'm running a django instance behind nginx connected using fcgi (by using the manage.py runfcgi command). Since the code is loaded into memory I can't reload new code without killing and restarting ...
14
votes
2answers
8k views

Is there a speed difference between WSGI and FCGI?

From the web I've gleaned that WSGI is a CGI for python web development/frameworks. FCGI seems to be a more generalised gateway for a variety of languages. Don't know the performance difference ...
11
votes
1answer
183 views

Why did Perl say() not append newline in FCGI mode?

I have a strange behaviour with Perl's say function in FCGI mode. Newlines won't be append. Why does this happen? Sample code: #!/usr/bin/perl -wT use strict; use warnings; use utf8; use feature qw( ...
10
votes
3answers
11k views

how to nginx virtual servers + fcgi for django?

I would like to run several virtual hosts via nginx, each serving a different django app via fcgi. Is this possible? If so, does anyone have good resources on where/how to start? The nginx docs seem ...
8
votes
2answers
627 views

Using FastCGI applications from within a C# app

I'm developing a small webserver in C# as part of a larger project (the nature of the project prevents me from using something like apache nginx, which would be my first choice). The webserver needs ...
8
votes
1answer
1k views

How do I get killed using Perl FCGI?

I'm having a little problem with nginx and the Perl FCGI module. I have a long operation in my FCGI program that may outlive the server (or the user on the server) on the other end of the Unix socket ...
6
votes
3answers
1k views

Python ctypes MemoryError in fcgi process from PIL library

I'm trying to run Django on shared hosting (Bluehost). I'm using functionality that requires PIL. PIL imports and works from an interactive shell, but in my fcgi process it crashes with a MemoryError ...
6
votes
3answers
3k views

Unhandled Exception in Flup

I am facing the dreaded "Unhandled Exception" raised by Flup. The sad part is its raised at the webserver (lighttpd+flup) level and not at the application level(Django). So no 500 email is raised ...
6
votes
6answers
5k views

FastCGI for C++

I've found only two FastCGI libraries for C++. There's the "official" one, and fastcgi++. How is either one better than the other? Do any others exist?
6
votes
4answers
736 views

Do I have to put DB connection/initialization outside of the FCGI loop to take advantage of FastCGI in Perl?

Let's say I've got some Perl code that increments a column in a specific row of a database each time it's hit, and I'm expecting it to be hit pretty frequently, so I'd like to optimize it with FCGI. ...
6
votes
1answer
2k views

How to configure Perl/FCGI (FastCGI) with IIS 7.5?

I'm trying to get Perl/FastCGI (FCGI) running with IIS 7.5. The version of C:\Windows\System32\inetsrv\iisfcgi.dll is 7.5.7601.17514. Here's my web.config and my Perl script: D:\MiLu\Dev :: more /t1 ...
6
votes
2answers
1k views

how to configure Munin-2.0.x to generate content with CGI (only) on Fedora?

I've got a 400+ node munin-1.4.x installation, that I'd like to upgrade to munin-2.x, to take advantage of the CGI based content generation (html & graphs) on the munin master server. I've gone ...
5
votes
2answers
6k views

Rails 3 and FCGI?

I want to make an app for a friend but he has shared hosting and the only option is fcgi and I can't find any documentation on how to do it. Is there anyways to run rails 3 on FCGI?
5
votes
1answer
221 views

fcgi vs mod_fastcgi on apache server

I have an apache server in which I am setting up fcgi. I was contemplating if I've to setup the tailor made mod_fastcgi or the plain old cgi-fcgi. mod-fastcgi doesn't seem to support the ...
4
votes
1answer
678 views

How to get perl script errors in nginx error log (Nginx with FCGIwrap)

I just installed fcgiwrap and spawn-fcgi to be able to use perl scripts in nginx. I added something like this in my site config: location ~ \.pl$ { gzip off; fastcgi_pass ...
3
votes
2answers
377 views

How are data shared between fastCGI processes?

I've written a simple perl script that I'm running via fastCGI on Apache. The application loads a set of XML data files which are used to lookup values based upon the the query parameters of an ...
3
votes
1answer
524 views

Django admin with FCGI + lighttpd

I'm running a django installation on lighttpd +FCGI. Everything works fine except the admin. It seems that the redirects after I post something (i.e. I modify sor create an instance of a model) go ...
3
votes
2answers
2k views

How do I handle and send POST requests in Perl and FastCGI?

Unfortunately, I'm not familiar with Perl, so asking here. Actually I'm using FCGI with Perl. I need to 1. accept a POST request -> 2. send it via POST to another url -> 3. get results -> 4. return ...
3
votes
2answers
485 views

rails 3.2.8 ruby 1.9.3 on DreamHost shared hosting fcgi RMagic issue

Using the following guide http://spontaneousderivation.com/2012/09/30/rails-3-2-on-a-shared-dreamhost-server/ I managed to get my Rails 3.2.8 application with Ruby 1.9.3 up and running on ...
3
votes
3answers
5k views

Lighttpd + PHP + FCGI

I have a problem with Lighttpd, PHP and CGI. I use OpenSUSE.10. I have builded lighttpd (version 1.4.23) and php (version 5.3.0). This is lighttpd build command lines: ./configure ...
2
votes
2answers
1k views

Rails console vs server differences on production server

Having deployed a very basic Rails 3.2.3 trial site to a "production" server (not really in production, thankfully!) with RVM Ruby 1.9.3-p194, I find the following to be true, of the commands listed ...
2
votes
3answers
507 views

C API for spawning a FCGI server?

I made a FCGI program in C using fastcgi.com's API. I've called FCGI_Accept like the docs say. When I run the resulting executable it just runs through like a CGI program, and exits. I need the API ...
2
votes
1answer
226 views

Error while building FastCGI in a server running ubuntu

I want to interface FCGI with my C++ code in a server that runs ubuntu. I didn't find ubuntu under the list of tested platforms in the FCGI website, but I tried building it anyway. ./configure seems ...
2
votes
1answer
310 views

How to design applications for persistent PHP FastCGI processes?

PHP is finally starting to get TRUE FastCGI implementations. (Not to be confused with PHP-FPM or PHP process startup scripts commonly used with Nginx - think node.js for PHP. How do you design ...
2
votes
1answer
2k views

FCGI htaccess handler

I'm trying to setup django on a shared hosting provider. I followed the instructions on http://helpdesk.bluehost.com/index.php/kb/article/000531 and almost have it working. The problem I'm facing ...
2
votes
2answers
2k views

Django in Lighttpd + FCGI on Ubuntu - rewrites stop working when I enable a second site

I've got lighttp configured to start and serve django via fastcgi on ubuntu. When I have only a single site enabled (via ubuntu's apache-like conf-available, conf-enabled mechanism), everything runs ...
2
votes
1answer
52 views

How to use abstract names of unix domain sockets with fcgi in Perl in Linux?

In Linux, in Perl, using the FCGI module, using the Open Socket function, is it possible to create an unix domain sockets using abstract names? I tried to create a socket starting with a null ...
2
votes
2answers
97 views

Why does Django serve my page as a download?

I have a Web app written in Python+Django. On my machine, it works fine; as soon as I push it into production, it starts acting up. For some reason, my login screen loads fine. But, as soon as I try ...
2
votes
1answer
403 views

How to get rvm running inside fcgi?

I had a rails 2.3 application running on apache + fcgi, and I am migrating it to rails 3.1 + rvm (+ apache + fcgi). I am now blocked at fcgi <-> rvm. I tried putting #!/usr/local/bin/rvm ...
2
votes
1answer
324 views

Which dispatch.fcgi provides the same behaviour as “rackup”

I have a ruby rack application that I would like to manage behind FCGI. What should I put inside the dispatch.fcgi file so the executed application matches/uses the content of config.ru ? I would ...
2
votes
1answer
217 views

Flask: Static files in subdirectories

In my flask template file I include a css file (I ommited the boilerplate) like this: url_for('static', filename='css/bootstrap.css') This renders to /static/css/bootstrap.css which means (because ...
2
votes
3answers
1k views

Hosting Django on a shared FastCGI host

I am trying to set up django shared hosting at iPage.com using FastCGI but I keep running into issue. The CGI script lods in the browser as text instead of executing. Below is the .htaccess and the ...
2
votes
1answer
138 views

How to create a cookie with FastCGI (nginx) in C++

I'm creating a website in C++ using FastCGI on nginx. My problem is now to track a user (aka session). I can read the HTTP_COOKIE out, but I have no clue how I can create a new cookie with a name and ...
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
1answer
60 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
161 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
0answers
123 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
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
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' ...
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 ...
2
votes
3answers
3k views

Django on Apache with FCGI

Solved: Unfortunately I wasn't able to solve the problem but I started over and followed the Django + FastCGI guide on the "A Small Orange" wiki and everything is working as expected. I am trying to ...
1
vote
1answer
7k views

Running python through fastCGI for nginx

I am looking to run standalone python scripts through fcgi for use with nginx, but I have no idea where to start with spawning the processes. Currently, I have PHP successfully with nginx+fcgi, but ...
1
vote
3answers
714 views

Django on lighttpd: redirecting to .fcgi (404)

I'm in the process of deploying my django project to a lighty server. When I'm trying to access the website root, everything is fine, but if I add /admin/ or /blog/ I get: Page not found (404) ...
1
vote
1answer
1k views

What is the significance of the dispatch.fcgi file in Rails

There is a file under public folder in Rails environment called dispatch.fcgi. What is the significance of this particular file? I opened that file and it has this # # Default log path, 50 ...
1
vote
1answer
1k views

Django + lighttpd + fcgi performance

I am using Django to handle fairly long http post requests and I am wondering if my setup has some limitations when I received many requests at the same time. lighttpd.conf fcgi: fastcgi.server = ( ...
1
vote
4answers
679 views

complicated installation spagetti of latest Rails 2.3.5

the basic and, I guess, more rhetorical question is why RoR installation/maintenance became so F%#$ing complicated? Some background of the problem: Platform: Windows XP Ruby version: 1.8.6 A few ...
1
vote
2answers
50 views

Why should I avoid using CGI?

I was trying to create my website using CGI and ERB, but when I search on the web, I see people saying I should always avoid using CGI, and always use Rack. I understand CGI will fork a lot of Ruby ...
1
vote
2answers
3k views

Difficulty getting flup fcgi script to work

I'm building a site for a client using django. It's been hosted on shared hosting and mod_wsgi can't be used. In the old year, I got it working using fcgi, but when I got back, it was broken. I have ...

1 2 3 4