0
votes
2answers
52 views

Passing session variables from php to perl

I need to pass php session variables from my php form to a perl script and vice versa so the forms fields can keep their values. form.php <?php session_start(); if (isset($_POST['submit'])){ ...
0
votes
0answers
74 views

curl a file -> cgi (perl) as data collector?

I am trying to write a data collector for linux machines over the web. alas, I do not want my users to submit the information over email, but abuse my web server as a recipient collector, too. I ...
0
votes
1answer
50 views

Cannot find java via POST call

I've inherited legacy Perl CGI scripts that used to be able to receive information from an HTML form (via POST) and compile some java source files with that form data (ultimately creating a Java ...
0
votes
2answers
407 views

python simple wsgi file upload script - What is wrong?

import os, cgi #self_hosting script tags = """<form enctype="multipart/form-data" action="save_file.py" method="post"> <p>File: <input type="file" name="file"></p> ...
0
votes
0answers
159 views

Python CGI script running under lighttpd fails to get POST parameters without trailing slash

Here's a CGI script that just prints out the elements of cgi.FieldStorage #!/usr/bin/python import cgi print """Content-type: text/html <!doctype html> <p>form keys submitted: %s ...
1
vote
1answer
80 views

Unknown GET Request after POST Request

I have an a.shtml page and a form on it. When i submit the form with POST i call a.cgi and redirect the page b.shtml from the cgi with META. But i saw on access.log that a.cgi executes two times. It ...
1
vote
1answer
117 views

Extra GET Request on META Refresh Redirect (CGI-C)

I have a form (on page form.html) submitting with POST method to a CGI-C page - let's call it form.cgi - and what form.cgi does is it redirects the user to the previous page (to form.html) with ...
0
votes
1answer
345 views

Separating Form and Processing in Python

I'm using the cgi module to handle form input data, but I would like to have the form and the processing in separate files (modules?). Is there a way to pass the POSTed information from the HTML to ...
1
vote
2answers
51 views

Whitespace separate in c

I am doing a cgi. I am using POST method in the html and I receive a string from stdin in C. I would like to get the content of a file that i upload with post method. So I have to reach the part of ...
0
votes
2answers
252 views

Perl CGI->Vars() not properly hashing cgi parameters

I am trying to use MySQL, Perl and JS to make a simple registration form for my website. The Perl script works fine when given parameters directly via cmdline or via the URL and the MySQL properly ...
1
vote
1answer
152 views

cgi.test() in Google App Engine

Im currently learning to use Google App Engine, and I modified this example to look like this: import cgi import webapp2 from google.appengine.api import users class ...
0
votes
1answer
373 views

Get input from cgi POST data

This is my c++ code to retrieve html data with cgi. char* fileContentLength; int nContentLength; fileContentLength = getenv("CONTENT_LENGTH"); if(fileContentLength == NULL) return -1; ...
0
votes
1answer
138 views

Handling multiple POST attachments with GNU cgicc

I'm trying to send a POST request containing multiple binary files to a HTTP server. The server interprets the request using cgicc. For a single file, it works like this: cgicc::Cgicc cgi; ...
0
votes
1answer
76 views

Why is cgi POST data being garbled and truncated

The JavaScript for the POST is file = document.getElementById("upfName").files[0]; xhrObj = new XMLHttpRequest(); xhrObj.open("POST", llm.serverExe + '?dataUpload', true); ...
1
vote
0answers
114 views

Browser not sending form data?

I have a web form which includes a button to submit a small text file and a text field via POST to a Python CGI script, which uses cgi.FieldStorage. The script processes the file, but first checks ...
0
votes
1answer
137 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 ...
1
vote
2answers
256 views

Tricky Issue Handling File Upload in Perl

We use CGI.pm to help us handle file uploading on our website and through our API which is used by our Android & iPhone Apps. We recently noticed that CGI.pm seems to be returning no params for ...
0
votes
2answers
275 views

Not able to access POSTed variables using /dev/stdin in bash

How can I access values sent with the help of xmlHttpReq.send in bash? In perl I can access data sent from an html/javascript file as: #!/usr/bin/perl -w use CGI; $query = new CGI; $secretword = ...
0
votes
0answers
200 views

Bash. CGI post gives error 500. But works without AJAX.

I'm trying to call an CGI page but the response comes in blank. It returns error 500. If I just do the post without AJAX it works well. #!/bin/bash echo "content-type: text/html" echo "lalala" > ...
1
vote
2answers
518 views

Accepting URL Encoded POST Request with C# in ASP.NET

I am working with a 3rd party that wants to send info via url encoded post requests and I can't seem to figure out how to accept the data when they send the request. Here is what their server log ...
1
vote
1answer
408 views

ruby/erb/cgi — get method works, but post doesn't

I am trying to write a simple eruby (erb) cgi form. Everything works fine, if I use method="get". For example, the following code just dumps the cgi parameters. <html><body> <% ...
1
vote
2answers
1k views

How can I get both the GET and POST request params, on a POST request?

I'm creating a facebook app with a Perl backend. The problem is that since Facebook sends the request to my web app as a POST request I'm having a problem getting the GET parameters that were also ...
1
vote
1answer
502 views

Python: ways of parsing get/post parameters

I'm trying to analyse different ways of Python connection to webserver: cgi, fastcgi, mod_python, WSGI, and Django framework... So, how many ways exist to parse get/post parameters in python? Are ...
0
votes
1answer
420 views

Understanding how to use CGI and POST

I'm trying to understand how I can use Python and javascript so that I can use POST/GET commands. I have a button that sends a request to server-side python, and should return a value. I understand ...
1
vote
2answers
2k views

Outputting XML to a browser from a Perl CGI script?

I've got a perl CGI script running on an Apache server. The script is, among other things, supposed to display some XML that is generated from input. Using the XML::Writer module, I've created a ...
1
vote
2answers
434 views

Accept parameters only from POST request in python

Is there a way to accept parameters only from POST request? If I use cgi.FieldStorage() from cgi module, it accepts parameters from both GET and POST request.
1
vote
3answers
563 views

How can one process POST requests with a basic Python CGI script on Apache?

I am building a simple python CGI script to work with Twilio. Right now, it only outputs some simple XML, but I would like it to be able to process and respond to POST requests (to get thinks like ...
1
vote
0answers
616 views

Reading POST data while uploading

I'm about to finish a jquery plugin that should provide a progress-bar for file uploading using ajax and a python cgi script. My plugin is inspired after this piece of software. The idea is ...
0
votes
1answer
1k views

I have nginx running with spawncgi php, POST and GET data is not getting through

I cant get anything through the URL parameters or form submissions... $_GET and $_POST vars are always empty.... Tried same setup on apache ... worked perfectly... whats up? any ideas guys?
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
874 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 ...
1
vote
2answers
683 views

Reading CGI POST data the most efficient way

I'm in great need of a way to dig through potentially huge amounts of CGI supplied POST data. With reading the GET data it's no big deal, as I can just re-request the QUERY_STRING environment ...
4
votes
3answers
1k views

Apache2 and CGI - how to keep Apache from buffering the POST data?

I'm trying to provide live parsing of a file upload in CGI and show the data on screen as it's being uploaded. However, Apache2 seems to want to wait for the full POST to complete before sending the ...
1
vote
1answer
294 views

Storing Data from both POST variables and GET parameters

I want my python script to simultaneously accept POST variables and query string variables from the web address. The script has code : form = cgi.FieldStorage() print form However, this only ...
2
votes
3answers
241 views

Encoding minimum characters in POST request: is it safe or not?

I came across an approach to encode just the following 4 characters in the POST parameter's value: # ; & +. What problems can it cause, if any? Personally I dislike such hacks. The reason why I'm ...
2
votes
2answers
271 views

HTTP POST Requests require multiple transmissions?

I found the quoted text in Programming Python 3rd edition by Mark Lutz from Chapter 16: Server-Side Scripting (page 987): Forms also include a method option to specify the encoding style to be ...
2
votes
2answers
202 views

Is there a good reason why I shouldn't be mixing POST and GET parameters in a CGI query?

Is there a good reason why I shouldn't be mixing POST and GET? For example: <form action="http://example.com/?param1=foo&param2=bar" method="post">
12
votes
7answers
12k views

How can I send POST and GET data to a Perl CGI script via the command line?

I am trying to send a get or a post through a command-line argument. That is test the script in the command line before I test through a browser (the server has issues). I tried searching online, and ...
1
vote
1answer
148 views

Why form posting yields $_FILES['thefile']['name'][0] instead of $_FILES['thefile'][0]['name']?

When you name several file input fields with the same name and an array index like so: <input type='file' name='thefile[0]'> <input type='file' name='thefile[1]'> Then in the form ...
0
votes
2answers
807 views

How can I read the URL-Data send with POST in Perl?

I'm trying to read out the POST-Data that was sent from a form in a page to my Perl Script. I googled and found out that: read(STDIN, $param_string, $ENV{'CONTENT_LENGTH'}) reads out the whole ...
2
votes
8answers
3k views

How to access a $_POST item through the following array kind of syntax?

If i send four POST variables, but the second one — I dont know that the name="" tag will be; how can I access it? Can i use $_POST[1] or not?
2
votes
2answers
1k views

How can I access parameters passed in the URL when a form is POSTed to my script?

I've run into an issue with mod_rewrite when submitting forms to our site perl scripts. If someone does a GET request on a page with a url such as http://www.example.com/us/florida/page-title, I ...
0
votes
5answers
581 views

How can I programmatically get the image on this page?

The URL http://www.fourmilab.ch/cgi-bin/Earth shows a live map of the Earth. If I issue this URL in my browser (FF), the image shows up just fine. But when I try 'wget' to fetch the same page, I ...
0
votes
1answer
360 views

CGI post handling differences on Hiawatha and Apache

I'm trying to set up a light development environment to allow straight CGI in Common Lisp, and I'd like to use Hiawatha instead of the much larger Apache. I have code that works for both GET and POST ...