0
votes
0answers
11 views

Getting dynamic content from sensor to a web browser

I want to connect the sensor to the desktop using a bluetooth or wifi of the sensor. I want to interpret this dynamic data on the web page. I want this to work even when the sensor is connected by ...
0
votes
0answers
24 views

Reading Parameters in cgi script

For the Below Flex code - var variables:URLVariables = new URLVariables(); variables.userID = "1234556"; var request:URLRequest = new URLRequest("www.test.com/test.cgi"); request.method = "POST"; ...
1
vote
1answer
93 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
0answers
51 views

nginx + perl setup guide for windows

I'm looking for a guide, tutorial or advices to just have an nginx webserver working on windows configured with localhost site which can run perl scripts. I know how to do it with Apache so, please ...
1
vote
0answers
201 views

fastcgi 500 failure

we are running windows server 2012, with IIS 8 and php all of a sudden the site went down with this error message: HTTP Error 500.0 - Internal Server Error The FastCGI process has failed frequently ...
2
votes
1answer
133 views

Microsoft Azure appending extra query string to urls with query strings

In deploying a version of the Django website I'm working on to Microsoft's Azure service, I added a page which takes a query string like ...
1
vote
0answers
93 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 ...
3
votes
1answer
229 views

C++ CGI nowadays [closed]

Background I've a 5 years PHP background and in the last month I've been busy finding a way to do web with C++ (even if I know this is childish and stupid, I feel like C++ is the only true ...
3
votes
1answer
128 views

Configure Yesod app as CGI

Given a freshly scaffolded Yesod application, what is the minimal set of changes necessary to get an executable which acts as a CGI program? A wrapper program is acceptable. If the default executable ...
0
votes
1answer
199 views

How to turn on CGI/FastCGI on Zend Server for Ubuntu Server?

When using Zend Server on the Windows, CMS systems like Joomla runs OK but when I'm installed default Zend Server CE on my live Ubuntu Server - I have problems with file permissions probably because ...
11
votes
1answer
185 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( ...
0
votes
1answer
140 views

how to pass information from cli or server to fastcgi (php-fpm) and back again?

i'm trying to write a webserver. i didn't want to write a module for php, so i figured i'd pass information to php-fpm like nginx and apache does. i did some research, and setup to prototypes, and ...
1
vote
2answers
1k views

IIS 7.5 PHP failure “The FastCGI process exited unexpectedly”

I've been attempting to get PHP working with IIS 7.5 and have hit a bit of a roadblock. Whenever I try to load the page I get the following error: "HTTP Error 500.0 - Internal Server Error C:\Program ...
0
votes
2answers
270 views

Streaming live PCM to web browser using HTML5 tag

I currently have an application which receives live, raw PCM data from a remote source via UDP. I would like to stream this to a web browser through a simple, straight-forward HTML5 tag. In ...
0
votes
1answer
147 views

Multiple request to fastcgi program

I read the docs at www.fastcgi.com but still cannot understand how to handle multiple requests . Assuming I have nginx with config: location ~ \.fcgi$ { fastcgi_pass 127.0.0.1:9999; ... } And ...
0
votes
1answer
1k views

Plesk 9.5 IIS 7 Fast CGI timeout error 500

I'm running the following setup: - Windows 2008 web edition - IIS 7 - Plesk 9.5 - FastCGI PROBLEM DESCRIPTION When running a script that takes longer than 30 seconds, I get the 500 internal server ...
2
votes
1answer
230 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 ...
0
votes
0answers
50 views

PDO selecting only six fields, cause CGI/FastCGI crash if more fields requested in the query

Code below causes CGI crash if more than 6 fields or just '*' requested function getPageTexts($pageId){ $dsn = ...
0
votes
1answer
154 views

Perl CGI - How can I delete contents of text fields?

So, I am totally new with CGI programming in Perl. The question is simple. Is there any chance to delete the content of a text field in CGI? I must to write a code that have some popup_menu, submit ...
-1
votes
2answers
291 views

Rails CGI vs FastCGI vs PHP Godaddy [closed]

I want to get an opinion from the crowd. I'm a rails developer first and foremost. Any time a project comes into my lap, I always choose Rails over other platforms. I was a PHP dev for many years as ...
5
votes
1answer
572 views

How do webserver and cgi process communicate with each other?

I want to understand how the webserver (for example: nginx) and cgi/fastcgi communicate with each other. How does the webserver pass cgi script to cgi process and how does the cgi process respond to ...
1
vote
0answers
476 views

which gatway interface (cgi, fastcgi, wsgi, scgi, uwsgi) is better for each language? [closed]

sorry for this silly question, but it seems that when using some language for internet, there are a lot of names that appears in the "bizarre" manner (for a beginner like me); for example in python, ...
0
votes
1answer
98 views

CGI file is overloading the server

I use movable type 5 for my CMS and I generate my pages dynamically. the particular file that is causing the overload while generating the page is perl-dynamic.cgi Is there any way to contain the ...
0
votes
1answer
429 views

Nginx + fastcgi: how to send basic auth

I am using Nginx and FastCGI to accept POSTs to a C based CGI program as an API. It works fine, so now I want to have the client use a key to identify itself, like key:pass@api.sample.com. When I ...
1
vote
0answers
156 views

Concurrent requests to PHP using FastCGI on IIS

Some of my PHP script might run for a long time, 10 seconds or so. I noticed that other requests have to wait until the previous request is processed. That makes the site unresponsive for a while. ...
1
vote
1answer
4k views

NGINX, FastCGI, UTF-8 Encoding: Output iso-8859-1 instead of utf8

i hope you can give me an idea about what's going wrong. The Szenario: I run gitweb (CGI) with a script in fastcgi mode: #!/bin/sh export FCGI_SOCKET_PATH=127.0.0.1:7001 su git -c ...
7
votes
1answer
210 views

How does PHP as a CGI handle memory?

When running PHP with Apache I know that the php core and all libraries are loaded for each request. However, with PHP CGI, FastCGI, or using PHP-FPM the php process persists for generally 500-1000 ...
3
votes
1answer
626 views

Perl web serving with nginx and FastCGI - not able to read parameters

There are any number of tutorials out there on how to use FastCGI to CGI wrappers to serve Perl code using nginx. But I'm comfortable working with Perl modules myself, so I don't need the wrapper. I'm ...
2
votes
2answers
437 views

Call PHP from virtual/custom “web server”

Basically, I'm trying to figure out how PHP can be called from a "web server". I've read the documentation, but it didn't help much. As far as I can tell, there are three ways to invoke PHP: via ...
0
votes
1answer
101 views

Python script running both FastCGI and traditional CGI?

I have written a Python script that currently is designed to handle traditional CGI requests. Of course, this won't scale well as the overheads for each request are great, which is why I'm looking ...
0
votes
2answers
783 views

php-cgi running very slowly on windows

I'm trying to speed up my wordpress site because for some reason it's taking on average 5 seconds to load a page (obviously way too slow). I've tracked it down to the php-cgi.exe hogging an incredibly ...
0
votes
2answers
130 views

Including files in pm modul

I am totally new to Perl/Fastcgi. I have some pm-modules to which will have to add a lot of scripts and over time it will grow and grow. Hence, I need a structure which makes the admin easier. So, ...
1
vote
1answer
326 views

running utf8 encoded php script with fastcgi

I have installed Nginx and I used fastcgi to run php script. When I run php script encoded as "utf8" I have got an error about "header": FastCGI sent in stderr: "PHP Warning: Cannot modify header ...
0
votes
1answer
108 views

CGI/FastCGI Request variable error?

Hi I recently updated mysites working file to a CGI/FastCGI server. It have some request variable section to process. oldsite.com/myfile.php?link=http://google.com [Working fine in apache] ...
6
votes
2answers
531 views

CGI::Session sharing sessions between clients!

When I tried this: while (my $cgi = new CGI::Fast) { ... my $session = CGI::Session->new(undef, $cgi); ... } I discovered that different clients were getting the same session! What ...
1
vote
1answer
562 views

Can I run php script under user permissions with FastCGI and APACHE?

I would like to install Apache and PHP but I have read that mod_php is very slow. Many php developers have adviced me to use FastCGI. Can I run my php script with a specific user:group? (each vhost ...
2
votes
3answers
1k views

multi threaded FastCGI App

I want to write a FastCGI app which should handle multiple simultaneous requests using threads. I had a look at the threaded.c sample which comes with the SDK: #define THREAD_COUNT 20 static int ...
5
votes
1answer
975 views

FastCGI, SCGI,

I'm writing a web server in C, and I need to figure out a way to use CGI to execute dynamic content server-side. I'm looking at the FastCGI protocol and it looks annoying. It reminds me of the bit ...
0
votes
2answers
578 views

Standalone FastCGI Process Manager

Is there such a thing as a smart standalone FastCGI process manager? I have my custom server in C++ which I am willing to connect to Apache/Nginx as a FastCGI application. Apache has mod_fcgid which ...
2
votes
1answer
3k views

How to Avoid CGI Timeout?

I have a PHP process which the user runs in the browser, but tends to take a fairly long time - upwards of 5 minutes. We just switched to a new server, and when we try to run the script now, it ...
0
votes
1answer
334 views

FastCGI Haskell script to make use of Pandoc text conversion

1. Motivation I'm writing my own mini-wiki. I want to be able to easily convert from markdown to LATEX/HTML and vice versa. After some searching I discovered Pandoc, which is written in Haskell and ...
0
votes
1answer
600 views

[C/C++][CGIcc] GET works but POST results in error message

I am new to CGI. I use Apache v2.2 and GNU cgicc v3.2.9. I want to use CGI for generating a HTML web page with a simple form. Aim of this work is to let an user send data by hiting a button on this ...
1
vote
2answers
2k views

How to force FastCGI to encode form data as UTF-8 as CGI.pm has option?

Trying to run old CGI-scripts under FastCGI. Printing without extra parameters gives proper output: print $q->div( $q->param("text") ) But when printing out with extra parameters hash for ...
1
vote
1answer
341 views

How to use a PHP Fastcgi process from CLI

I have PHP running via Fastcgi on Apache2. The PHP process uses a Unix Socket. Would it be possible to access the socket from the command line and to execute a PHP script? I have some long ...
1
vote
1answer
939 views

Perl CGI or CGI::Fast under Apache 2.2 on Debian Lenny

I have 2 different web servers on a Debian Lenny machine. One is running FastCGI (TRAC) and the other web server is running PHP and some CGI scripts. So I have currently the 2 Apache2 modules enabled ...
3
votes
2answers
645 views

How to FastCGI in C?

I have a website where each webpage is compiled into a binary (I have 100 webpages, therefore I have 100 binaries). Apache's .htaccess contains the line "SetHandler cgi-script" which instructs apache ...
12
votes
2answers
9k views

Differences and uses between WSGI, CGI, FastCGI, and mod_python in regards to Python?

I'm just wondering what the differences and advantages are for the different CGI's out there. Which one would be best for python scripts, and how would I tell the script what to use? Thanks!
6
votes
1answer
2k views

WebSocket and CGI/FastCGI/SCGI protocols

I'm looking for resources about interaction between client side web socket, web server and real application backend that works behind CGI, FastCGI or SCGI protocols. It seems that this is impossible ...
0
votes
4answers
1k views

How do I receive and respond to Ajax requests in Perl?

I have a client-side appliction which submits some data via AJAX POST request (request.open("POST", url, flag)) to my Perl CGI script. How do I retrieve this data with Perl and return some other data ...
4
votes
1answer
894 views

Which FastCGI server mode should I choose under Apache?

I am new to FastCGI and looking to use this platform to speed up my existing vanilla CGI (perl) programs. However in reading the FastCGI/Apache FAQ, it appears I can setup my scripts (once converted ...

1 2