0
votes
4answers
52 views
Deploying a python CGI app
I have developed a python CGI application which works just fine on my development box. My hosting provider however gives me little control of its server: I use a lot of custom stuf …
0
votes
1answer
30 views
mod_perl and inheriting STDIN in child process
Hi everyone,
I have this old Perl script that is supposed to act as a proxy of sorts between HTTP-based clients and non-HTTP Java server: the client POSTs some data to this Perl s …
2
votes
1answer
28 views
Obtain SSL information in PHP running as CGI
On many servers, PHP runs as CGI. This is an essential part of using suexec to run the scripts for each site as the user associated with the site. So giving up CGI is not appeali …
0
votes
5answers
82 views
URL regex with regex.h in c
SO:
I'm having a bit of difficulty setting up a regex to match a URL using the regex.h library in c. I have a working IP regex that I was hoping to convert to match a simple stri …
1
vote
1answer
73 views
Perl CGI Hook is not working as expected.
Hi all,
I have problems using the perl cgi hook.
It seems that after I pressed the "send" button my perl script is not called instandly but after the file is uploaded completely. …
1
vote
4answers
87 views
How do I use a Perl CGI locally without using curl and apache2?
I would like to submit a form to a CGI script localy (w3c-markup-validator), but it is too slow using curl and apache, I want to use this CGI script more than 5,000 times in an ano …
0
votes
1answer
48 views
Help needed on Uploading Files in windows mobile
I have an desktop application running on my desktop.
I need to send the file path to the CGI script running at server.
CGI script taks the file path and upload the contents from my …
0
votes
4answers
25 views
HTTP POST Error 414
Hi there,
I'm using HTTP POST to call a cgi script on a web server and send along some data as arguments. Some of the arguments can contain quite a bit of data. This seems to be a …
0
votes
0answers
37 views
How do I prevent duplicate headers when dealing with threads in PHP?
I've written a PHP script that has to fork and do some processing in parallel, and then the main page returns data after processing. I'm currently using the pcntl functions to do t …
0
votes
1answer
25 views
Forward one domain to another based on request header.
Hi All,
I have a requirement that I want to check the request headers and according to that I want to forward the incoming request to appropriate sub domain of my company.
For ex …
4
votes
5answers
96 views
How can I continuously inform the user of progress from a Perl CGI script?
I have this Perl script sitting in the cgi-bin folder of my Apache server:
#!/usr/bin/perl
use strict;
use warnings;
$| = 1;
print "Content-type: text/html\r\n\r\n";
print "Hel …
1
vote
4answers
88 views
Why doesn’t my Refresh header work?
Hello stackoverflow,
I'm working on a homework assignment in Perl CGI using the CGI.pm module. In my code I am checking for a cookie. If the cookie exists, I want to initiate ano …
0
votes
2answers
31 views
Security or other gotcahs in Apache-CGI-Bash application?
I've taken over supporting a time- and expense-entry system. Apache's CGI. CGI programs are written in bash :) I'm going to add some features into it and exposing it out to many …
5
votes
5answers
231 views
Is cgi dead?
Ok, let's put it in a more mildly: Is cgi (common gateway interface) legacy?
yes? no?
Under what circumstances would a project starting today (one that does noot have to interact …
1
vote
1answer
54 views
What is a better way to stream audio with Perl CGI?
Stackoverflow:
For a cs assigment I am using the following code to stream audio. However, now I would like to add the ability to stream files successively, as in a playlist, ho …
