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 ...
0
votes
1answer
11 views
How to code a simple php5-fastcgi stdin stdout one time shot for now
I need someone to give me a sample code or some easy explanation on how to do cgi-fcgi to do stdin/stdout. I did phpinfo() for my web host. It says I am using php version 5.2.17. I should probably ...
0
votes
1answer
50 views
How do I deal with URL reroutes in Python Bottle and Apache .htaccess?
I am currently trying to create a simple standalone application using Python Bottle.
My entire project is under pytest/, where I have dispatch.fcgi and .htaccess.
dispatch.fcgi:
#!/usr/bin/python
...
0
votes
0answers
25 views
Processing parameters of the form with help of CGI in the application based on the module FCGI
The application communicates with Nginx protocol Fastcgi. Module is used FCGI. The application is as follows:
use FCGI;
use FCGI::ProcManager;
use CGI;
my $proc_manager = FCGI::ProcManager->new({ ...
7
votes
1answer
3k 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 ...
2
votes
1answer
64 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 ...
1
vote
0answers
160 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 ...
2
votes
1answer
67 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 ...
0
votes
2answers
109 views
Can't figure out error log when installing Django on fastCGI apache server
I get this error from the error log when trying to install Django on a FastCGI apache server.
[Tue Feb 19 10:28:54 2013] [warn] [client 74.59.229.207] (104)Connection reset by peer: mod_fcgid: error ...
1
vote
2answers
54 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 ...
0
votes
1answer
64 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, ...
1
vote
1answer
94 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
...
2
votes
1answer
184 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 ...
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 ...
1
vote
1answer
108 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 ...
0
votes
1answer
57 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 ...
3
votes
1answer
185 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 ...
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 ...
1
vote
1answer
150 views
django-pdb when running with nginx/fcgi?
It seems to work somewhat when I just execute:
python manage.py runserver <hostname>:<port> --pdb.
What happens is it will receive the GET request, but it won't actually let me step ...
0
votes
0answers
35 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
1answer
256 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 ...
2
votes
0answers
34 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 ...
3
votes
2answers
528 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 ...
0
votes
1answer
86 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 ...
1
vote
2answers
223 views
Django @login_required cause redirects loop when using nginx and fastcgi
I set LOGIN_URL like this in settings.py:
LOGIN_URL = '/login/'
and in urls.py I and this URLConf:
(r'^$', 'agent.index.redirect'),
(r'^login/$', 'django.contrib.auth.views.login', ...
0
votes
1answer
62 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
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, ...
2
votes
1answer
311 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 ...
0
votes
0answers
38 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
2answers
86 views
Files being served are stale / cached ; Python as fcgi + web.py + nginx
I'm serving files in ubuntu using Nginx and fcgi, python and web.py. My index.py contents are:
app = web.application(urls, globals(), True)
if __name__ == "__main__":
web.wsgi.runwsgi = lambda ...
1
vote
1answer
588 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 ...
0
votes
0answers
60 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 ...
2
votes
0answers
145 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 .
...
0
votes
1answer
186 views
How to enable ForceType in Apache with mod_fcgid
I have mod_spdy, so I had to enable mod_fcgid for PHP per instructions from Google. The config looks like this:
<Location />
AddHandler fcgid-script .php
Options +ExecCGI
FcgidWrapper ...
1
vote
0answers
99 views
What method and the libraries in C++ are most suitable and easy to create a (server) back-end for web? [closed]
What method and the libraries in C++ are most suitable and easy to create a (server) back-end for web?
What do you advise of what you have tried, or from this list?
Fastcgi Daemon - Yandex's ...
0
votes
1answer
91 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
0answers
67 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 ...
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 ...
0
votes
1answer
89 views
Supervisord manage fcgi and django
I've managed to set up supervisord with fastcgi on a django project of mine, the problem is that when I make mi program stop, the server keeps running somehow, and my page keeps online.
Here is my ...
0
votes
0answers
87 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 ...
2
votes
1answer
154 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
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 ...
0
votes
1answer
52 views
Rapid-Fire AJAX Requests in Rails Leads to Data Overwrite on Apache
The Problem
I've run into a problem after moving a rails 3.2.8 app from WEBrick to Apache with FCGI.
The app includes a game written in javascript that sends a lot of AJAX requests in order to ...
1
vote
1answer
253 views
Lighttpd fastcgi urls not rewritten
I have a lighttpd server with fastcgi and web.py with the following fcgi configuration:
fastcgi.server = ( "/code.py" =>
(( "socket" => "/tmp/fastcgi.socket",
"bin-path" => ...
0
votes
2answers
244 views
How to shutdown Perl dancer applications nicely
I run several Perl dancer applications at the same time with the same user in FCGI mode (Apache). As I understand correctly, Apache (or any other webserver) will fork a new dancer application if the ...
0
votes
0answers
281 views
lighttpd: Backend is overloaded + fcgi-server re-enabled + all handlers are down [closed]
We have a standard lighttpd deployment with PHP-CGI and our error logs are flooding with the following. This is causing a huge problem because we keep returning 500's to our clients:
2012-10-14 ...
4
votes
1answer
723 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 ...
1
vote
1answer
581 views
FCGI+Perl+lighttpd: POST request is empty
I have lighttpd server with fastcgi on perl.
Lighttpd configuration:
server.modules = (
"mod_access",
"mod_alias",
"mod_compress",
"mod_redirect",
...
11
votes
1answer
190 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( ...
1
vote
1answer
127 views
Running Django fcgi daemons simultaneously
I have the following two exec statements in an Ubuntu upstart script:
exec /bin/su -c "cd /var/www/ssrc/jvwf/; \
python /var/www/ssrc/jvwf/manage.py runfcgi --settings=spzr.settings-admin \
...
0
votes
1answer
289 views
Django + fcgi = new edits to views.py not shown
I wanted to dive into Python\Django development and used what I had at hands:
hosting on Hostgator (not a vps but shared).
They do support Django but through fcgi. I did all what was said in the ...


