Tagged Questions
-1
votes
1answer
16 views
What version of Apache to download [closed]
I'm just beginning to program and I don't know which version of Apache to download. I need Apache to run my code is my understanding.
"Python web scripts are server-side scripts, meaning they must ...
1
vote
1answer
43 views
return http error code from CGI C module
I've a CGI module written in C & for some condition I want to return HTTP error 400 from this module. The problem is - I don't know how to return HTTP error from the module.
Looks like the ...
1
vote
0answers
185 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 ...
0
votes
2answers
71 views
How to get json payload for a C++ json post
I need to create a c++ cgi app the accepts post data. I will be accepting a json object. How to I get the payload?
I can get the get data using the below
int main() {
bool DEBUG = true;
...
0
votes
2answers
160 views
python cgi.FieldStorage.getvalue() not returning values from POSTed form elements
Using
import cgi
form = cgi.FieldStorage()
email = form.getvalue('email', 0)
Works when form values are sent via GET but not with POST, ie 0 is being assigned to email.
What am I doing wrong?
...
3
votes
1answer
235 views
G-WAN, output headers from CGI script
I'm trying to set an HTTP header like Content-Type over a CGI script.
In PHP:
header('Content-Type: text/plain');
// or
echo 'Content-Type: text/plain', "\r\n\r\n"; // as first line
or in Go:
...
1
vote
0answers
64 views
Delayed HTTP response causes session to expire
My site requires creation of PDF reports based on user's request. Upon a request (I've used GET), my CGI generates the PDF first, only then I send the response (along with the PDF) to the browser.
In ...
0
votes
1answer
79 views
http server call cgi progrm
I write a very very simple HTTP server to call a simple CGI program which I wrote,
but I the HTTP server can't show the result of CGI program on my browser.
The part code of my HTTP server is in ...
0
votes
0answers
39 views
Send files by parts to display on web-page - what block size?
I use CGI(in C++) want to display on web-page text file, that I'm reading on server side using fstream. As I don't know how big will be files, I will send(i.e. send to standard output in me C++ CGI ...
0
votes
2answers
90 views
How can I send an HTTP GET with Java and print the QUERY_STRING environment variable with a CGI app written in C++?
I have a Java program that starts an HTTP connection using the GET method. It looks like this:
String urlString = "http://10.205.110.250/cgiApp?envVariable";
URL url = new URL(urlString);
...
0
votes
2answers
334 views
CGI script is not executable
In one of my homework practices, I must start a webserver and when I access webserver's root, it executes a CGI script.
But when I open localhost:8080, this error message appears:
Error code 403.
...
0
votes
1answer
873 views
How to execute python script on the BaseHTTPSERVER created by python?
I have simply created a python server with :
python -m SimpleHTTPServer
I had a .htaccess (I don't know if it is usefull with python server)
with:
AddHandler cgi-script .py
Options +ExecCGI
Now ...
3
votes
2answers
129 views
In Perl, how can I set HTTP POST parameters to locally fake a HTTP environment?
I have a third party Perl script designed to be executed by a browser and which processes data in a HTTP POST request.
The script can be executed from the command line but when doing so it is not ...
-1
votes
1answer
151 views
CGI vs. Long-Running Server
Can someone please explain this excerpt from golang's documentation on CGI:
"
Note that using CGI means starting a new process to handle each request, which is typically less efficient than using a ...
0
votes
0answers
194 views
http digest authentication and session management
Instead of using form based authentication I was thinking to use http digest authentication using Apache mod_auth_digest. The problem is how to maintain state between requests.
Let's say that after ...
2
votes
0answers
102 views
lighttpd mod_rewrite rule to executable cgi
I've installed lighttpd and activated mod_rewrite and I just want do the following:
index.htm is the directory index
using an executable cgi-script
/[a-zA-Z0-9]/index.htm rewrites to $1.htm
What ...
0
votes
2answers
87 views
Exposing commandline tools remotely to users
We've got a number of perl and python scripts we want to expose to some of our teammates for casual usage; and we really don't want ot deal with getting them setup with git, perl, python, ...
2
votes
1answer
628 views
Malformed header from script. Bad header=HTTP/1.1 302 Found
I have a C++ program acting as a CGI script, and I am currently using Cgicc to do some of the parsing and formatting for me (though it will probably be replaced at some point). When constructing my ...
0
votes
1answer
136 views
How to find HTTP POST Data sent to a CGI Page?
I searched google for a good number of hours. Maybe I searched for the wrong keywords.
Here is what I want to do.
I'm posting data to a website which then makes a HTTP POST request and returns a .CGI ...
0
votes
0answers
226 views
CGI program failing to run ArcPy module
I have a Flexviewer Mapping App [http://mapping.colletoncounty.org/ColletonCounty/FlexviewerApp.html] containing county parcel data. Using the URL parameters [http://SameURL + "?extent=" + MaxX, MaxY, ...
3
votes
1answer
208 views
Wrong filename when pushing a file to a user through HTTP using Python over Apache
I'm adding functionality onto our website so that users can download files stored in a database. The problem is that I cannot properly specify the filename for the user - the user is instead prompted ...
0
votes
1answer
1k views
Using Ruby to read json then output back out as json
I am trying to read the information I am returning from a local .json file. How do I get ruby to return the json information from this file? What I have so far:
#! /usr/bin/env ruby
require 'json'
...
-4
votes
1answer
151 views
0
votes
1answer
66 views
How can I save a HTTP request from a python cgi scripts so I can easily repeat it?
I have a cgi script wrote in Python that is receiving some complex http request, one that could be POST or GET.
I am looking for a simple way to log the request in some way so I can replay it later ...
0
votes
2answers
947 views
Http Authentication with PHP not working
I have Plesk Server where PHP is running as a CGI.
if (!isset($_SERVER['PHP_AUTH_USER'])) {
header('WWW-Authenticate: Basic realm="My Realm"');
header('HTTP/1.0 401 Unauthorized');
...
1
vote
1answer
169 views
HTTP Server & CGI Processing
I have a homework assignment that I am supposed to write a http server that is supposed to process an input given in a form on my index.html page. To do this I have a form that uses the POST action ...
0
votes
0answers
132 views
Why are the spaces (%20) in my URL interpreted as '_' signs?
I am using IE version 8 in my web application.
I am sending string which consist of blank space character which i have encoded as "%20". When I send this string to a specific URL,it interprets "%20" ...
3
votes
3answers
886 views
How to serve lua pages/scripts the simple, pain-free way?
I make good use of Lua programming language for all sort of scripts from some time now, and I want to stay with it (it is my sixt language or something). But I cant find a solution to make very simple ...
1
vote
2answers
442 views
Create HTTP post request and receive response in C# application and parsing the response
I am trying to write a C# program which posts http form to a CGI script and obtains a response.
The response is web page which needs to be parsed as I need only a certain portion of it.
Is there ...
7
votes
2answers
560 views
Secure data transfer over HTTP when HTTPS is not an option
I would like to write an application to manage files, directories and processes on hundreds of remote PCs. There are measurement programs running on these machines, which are currently managed ...
1
vote
2answers
1k views
How do I set up a Python CGI server?
I'm running Python 3.2 on Windows. I want to run a simple CGI server on my machine for testing purposes. Here's what I've done so far:
I created a python program with the following code:
import ...
0
votes
1answer
426 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
3answers
786 views
How do I remove a query string from URL using Python
Example:
http://example.com/?a=text&q2=text2&q3=text3&q2=text4
After removing "q2", it will return:
http://example.com/?q=text&q3=text3
In this case, there were multiple "q2" and ...
1
vote
0answers
24 views
Odd HTTP requests with ??W? in the CGI args starting around July 28 [closed]
On about July 28th, we started seeing a few random CGI requests to our various servers (multiple different unrelated applications) that seemed to have "??W?" appended to the end of the request.
A lot ...
4
votes
3answers
228 views
how to check whether perl cgi request originates from localhost
I would like to expose a service written in Perl to localhost HTTP requests. I do not want to modify Apache configuration. How to check whether a Perl CGI HTTP request originates from localhost?
I ...
0
votes
1answer
148 views
Save output of CGI script under different filename than the script name
I have a Python CGI script script.py running on a server. It produces a CSV file as output.
I want stupid people that don't know about file extensions to be able to just save the file to their hard ...
4
votes
1answer
186 views
Multipart upload form: Is order guaranteed?
It appears that when I use an html form to make a "Content-Type: multipart/form-data" POST request, the fields always appear in the order in which they are listed in the HTML. In practice, do all ...
2
votes
3answers
357 views
Getting Started with RESTful HTTP API
I work at an IP camera company and we currently have an outdated CGI HTTP API interface. The CGIs are implemented in C.
I would like to learn and implement a new HTTP RESTful API so that the ...
0
votes
0answers
207 views
Using NPH Mode in CGI executable EXE on IIS 7.0 - can this be “realtime?”
I am writing a prototype CGI application to run on an IIS 7.0 server, which will ultimately result in that application sending a number of http chunked responses that are generated in response to a ...
1
vote
1answer
61 views
How can I get request information when run as cgi in apache?
Never used cgi before, always being a PHP guy,in which I can simply get the request information as easy as $_REQUEST.
How can I supposed to get it in c?
1
vote
4answers
462 views
CGI: Using GET instead of POST when client can only use a URL string
My situation is that I have a POST cgi script that generates and returns a media file (mp3). One of the clients of this script wants to use an iOS media player (MPMoviePlayer) object that only takes ...
3
votes
4answers
709 views
Ruby CGI redirect response without waiting end of script
I am developing a ruby CGI video processing tool and want to redirect the user to another location upon click on the start-ffmpeg-for-an-hour-long-encoding-spree button.
Here is the code:
...
1
vote
2answers
2k views
How to fetch HTTP headers in perl when using CGI
I'm using Perl/CGI/Apache and want to fetch the X-Forwarded-For HTTP header. How do I do that?
0
votes
1answer
119 views
Accessing http upload data before upload completion
Is there any way to access a file being uploaded over http using a CGI script before the upload finishes? For example, say a 10 megabyte file is being uploaded, and is exactly 10% done, meaning the ...
0
votes
1answer
219 views
How do I create a new HTTP::Daemon in perl without root permisson?
Line 271 from HTTP::Proxy is this:
my $daemon = HTTP::Daemon->new(%args) or die "Cannot initialize proxy daemon: $!";
When I try to run this script:
use CGI;
use CGI::Carp(fatalsToBrowser);
...
1
vote
1answer
118 views
Read page from cache on Back but not when clicking a link to the page
I have a set of interlinked dynamic web pages.
When the user clicks from one page to another, I don't want any caching to happen - the request must go to the server, which will return an up-to-date ...
0
votes
2answers
150 views
Browser won't load page when the target URL is the same as the current page
I'm writing a cgi-based web application. In one part of the application you can maintain a list of items, and one of the things you can do is move an item up one spot on the list.
The link for ...
3
votes
4answers
2k views
How to pass POST data to the PHP-CGI?
Update:
In a fit of desperation, I did the following in a shell:
REDIRECT_STATUS=true
SCRIPT_FILENAME=/var/www/...
REQUEST_METHOD=POST
GATEWAY_INTERFACE=CGI/1.1
export REDIRECT_STATUS
export ...
1
vote
2answers
870 views
Handle HTTP POST with PHP
I struggled half a day and came to conclusion that it can't be done. I threw away my php scripts and rewrote it in perl and it worked right from the start the way I wanted it to work. Still, I want to ...
2
votes
3answers
5k views
How to pass query string parameters to the PHP binary?
I am developing a webserver that invokes the PHP binary (via CGI) to process a script.
Here's the problem:
The PHP script isn't picking up the command line parameters. For example, if the client ...
