1) The Common Gateway Interface is a standard defining how web server software can delegate web page generation to a stand-alone application or executable file. 2) Computer Generated Imagery
2
votes
0answers
80 views
Bugzilla 4.2.2: Adding attachment parameter to enter_bug.cgi call
On Bugzilla 4.2.2, I can set up default text for a bug with a call like:
http://bugzilla.foo.com/enter_bug.cgi?product=foobar&short_desc=foobaz%20is%20broken
But I am not sure what to modify, or ...
2
votes
0answers
164 views
Python CGI in IIS: issue with urandom function
I’m having a very strange issue with running a python CGI script in IIS.
The script is running in a custom application pool which uses a user account from the domain for identity. Impersonation is ...
2
votes
0answers
272 views
How to make mod_cache work properly with dynamic content?
I'm trying to use mod_cache to cache dynamically generated content. This is my Apache config:
CacheEnable mem /
MCacheSize 4096
MCacheMaxObjectCount 100
MCacheMinObjectSize 1
MCacheMaxObjectSize 2048
...
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 ...
2
votes
0answers
160 views
Apache + PHP (php-fcgi) doesn't show or log errors
I've got a problem. There is Apache/2.2.16 (Debian) and PHP 5.3.3-7+squeeze8 with Suhosin-Patch (cgi-fcgi). ini_get_all() shows that display_errors is "On", same as log_errors but. When there's an ...
2
votes
0answers
68 views
CGI via AJAX fails on Firefox from authenticated server?
I have a simple page that uses AJAX to POST data to a cgi script which then writs the data to a file. During the development, I hosted the cgi from my personal cgi-bin (no .htaccess):
...
2
votes
0answers
562 views
The specified CGI application misbehaved… when executing hgweb.cgi for Mercurial
I have IIS 6
I installed Mercurial in c:/program files/mercurial
I installed Python 2.6 in c:/program files/python
I added extension handlings etc for my websites under tab 'home ...
2
votes
0answers
404 views
C# HTTPModule Could not load type CGI Request
Trying to use a HTTPModule I wrote in complied C# class project to log request values and extend a third party CGI shopping cart. My module works fine with asp,asp.net,jpg and html request, but soon ...
2
votes
0answers
365 views
ACL for a network device
I need to implement ACL based authentication mechanism for a device. This device can be accessed through various interfaces like web pages, TL1 (basically through some command prompt) etc.
I need to ...
1
vote
0answers
91 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 ...
1
vote
0answers
52 views
cgi server on android device without root?
I realized a cgi-server on my android device (Acer Iconia Tab A511, Android 4) by a short python script:
import BaseHTTPServer
import CGIHTTPServer
import cgitb; cgitb.enable()
import os
...
1
vote
0answers
37 views
404 Error on custom cgi on Windows Azure
we are in trouble to configure custom cgi (modulev3.exe) by Paybox System
we follow : ...
1
vote
0answers
50 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
24 views
matplotlib CGI doesn't work
I'd like to publish a figure generated by matplotlib on web site based on Windows Apache Server.
A Scipy example code (below) shows just tiny icon which link is broken.
The code of related question ...
1
vote
0answers
44 views
Is it possible to deploy a python script to /cgi-bin/ on a heroku cedar stack alongside my ruby on rails application?
Right now I deploy a RoR app to passenger + apache2, and because of a legacy requirement I use a python .cgi script in the apache /cgi-bin/.
Is it possible to deploy a rails app to heroku with ...
1
vote
0answers
65 views
Apache: help understand Action and AddHandler directives
I'm trying to puzzle out Apache handlers. The official documentation has the following example:
The following directives will cause requests for files with the html extension to trigger the launch ...
1
vote
0answers
195 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 ...
1
vote
0answers
86 views
File upload error in Python CGIHTTPServer
I am working on a web interface to a data server that allows users in my office to upload files for storage. Right now I am running a CGIHTTPServer on my 32-bit Windows XP desktop with Python 2.7 and ...
1
vote
0answers
146 views
about get client ip address in python CGI
I am trying to get the original client ip address in a python cgi script. The client connect to the web server with a proxy. Following code always returns the proxy ip address. I tested all the env ...
1
vote
0answers
140 views
How to run cgi scripts in tomcat in Windows system
I installed tomcat and removed the comments of cgi script in web.xml in conf folder
Now iam not able to understand where to place my cgi script
I have read many resources and i placed it in a ...
1
vote
0answers
86 views
get id of a form field in python cgi
I was Programming CGI With Python and found that CGI passes information to Python in the form of a class called FieldStorage. The main attribute of class FieldStorage which i came across is 'getvalue' ...
1
vote
0answers
122 views
CGI-LUA with lighttpd: 500 internal server error
I'm running CGI-LUA scripts with lighttpd on embedded device. The web client attempts to run via POST three scripts every 3 seconds.
Most of the time it works, but the issue is that from time to time ...
1
vote
0answers
60 views
Executing CGI from PHP with a password protection? / PHP Apache not running curl_init(); in web, only in CLI
I'm working on project where I have a billing server (Server 1) and a control panel server (Server 2 / Virtualmin) where the billing system has to execute a script on Server 2 that accepts variables, ...
1
vote
0answers
71 views
apache 403 forbidden on OSX
I can't get apache on one OSX system to allow permission to execute a CGI script. It works on a different OSX system and on an Ubuntu system. Here are the relevant directives from the apache config ...
1
vote
0answers
66 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 ...
1
vote
0answers
33 views
How do I set up a persistent process on a web server and connect to it from multiple sessions?
This may seem very basic but I have never done this before and am frankly kind of lost. Here is what I want to do:
I want a process to run (a Python CGI script would be great) on a web server ...
1
vote
0answers
267 views
How do I get socket communication between Java Applet and a PHP server?
Can I use PHP modules, such as the one found in PEAR's Net_Socket
library, to have socket communications to a client-side in-browser
Java Applet (presumably using java.net.Socket)? If so, how? ...
1
vote
0answers
23 views
could anyone tell me how to config apache server to use cgi program?
I want to write a test cgi program in C++. But when I set the configuration file as follow:
ScriptAlias /cgi-bin/ "F:/workbench/cgi-bin/"
<Directory "F:/workbench/cgi-bin">
AllowOverride None
...
1
vote
0answers
65 views
How to get VirtualHost Name in my cgi scripts?
I use Nginx as reverse proxy server, and forward request to backend upstreams.
All backend upstreams are actually NameVirtualHost of Apache2, and they are in the same host.
There is a simple cgi ...
1
vote
0answers
234 views
Run superuser command from perl-CGI script via apache
I do have a script where I can run native OS command (non-superuser command)
#!/usr/bin/perl
print "Content-type: text/html\n\n";
system("ls -lrt");
and this works fine. System Command output is ...
1
vote
0answers
114 views
Using python string in sqlite3 LIKE query
thanks for any help in advance. I have seen several solutions to this problem on Stackoverflow and Google, but none seem to work for me when implemented. I am simply trying to pass in a python string ...
1
vote
0answers
233 views
IPCam's sd card access by cgi-http method(dlink dcs-942l) on android phone
I'm going to develop an ipcam security app on my android phone, and need to access to SD card of ipcam through HTTP request, to play a saved video, and I have two problem:
when access with browser ...
1
vote
0answers
77 views
Load XML content onload Apache
Am trying for onload page content from backend(perl) using Ajax .When Tried with simple CGIHTTPServer then, the pages is getting load as required in particular Div's .
But as same page i moved to ...
1
vote
0answers
93 views
Printing New Page with Python CGI
I'm using/learning Python to do a CGI assignment. Basically we have to present some forms, and then based on user input, present different forms, etc.
This is my script code so far:
import cgi
...
1
vote
0answers
67 views
Cause of CGI process being defunct'ed
I would like to check whether it's possible to trace what time a CGI program gets invoked or ended through any apache logs.
If I am using a javascript to reload a CGI program every 2 seconds and in ...
1
vote
0answers
454 views
Upload text as file with POST (multipart/form-data) using php and wget
I'm using PHP + wget to upload a file on an old cgi-bin control panel web-to-fax.
The cgi (dont know its language) checks the file format (doc txt pdf) and then returns me the error: "incorrect file ...
1
vote
0answers
33 views
htaccess: Check whether the Server is executing PHP as CGI
Is there a way to restrict destrictives in a .htaccess file to be only executed when the server is running PHP (or something else) as CGI?
Something similiar to this maybe?:
<IfModule ...
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 ...
1
vote
0answers
32 views
How do I handle locks in a CGI Web application?
I'm trying to handle the case where a long running CGI Web application is killed by closing a tab prematurely. A signal trap would then catch that event and clean up the locks.
I wrote a reduced CGI ...
1
vote
0answers
65 views
Apache taking 20sec to start running CGI script
Any ideas as to why my Apache/2.0.49 server always waits 20 seconds from receiving a request that is executed using a cgi-bin script to starting to run that script?
The server responds immediately ...
1
vote
0answers
2k views
Python CGI Error 500: Premature end of script headers
I have this fairly complex python script im trying to run which imports other self-written modules and things like sqlite. When I go to run the script, I get a 500: internal server error and the log ...
1
vote
0answers
49 views
C++ CGI execution/processing halts if I do not regularly cout or cerr
I am using a c++ CGI program which is being called through a PHP curl call (I have also run this same c++ cgi program from the direct cgi link).
The program works fine but every so often I find that ...
1
vote
0answers
88 views
Program that hosts every string one writes in the shell to the ip url using wsgi (and only the wsgiref module)
I want to make a small program with wsgi that allows me to type strings in my shell and output it on my ip url.
Currently I have this wsgi_app.py:
#!/usr/bin/env python
from wsgiref.simple_server ...
1
vote
0answers
72 views
How can i find out names of uploaded files using 'CGIHTTPServer.CGIHTTPRequestHandler' do_POST?
query = cgi.parse_multipart(handler.rfile, pdict)
I used function "parse_multipart" of module cgi to convert the form data, but i can not find the name of uploaded file in the content of variable ...
1
vote
0answers
150 views
cgicc: uploading large files?
I'm writing a CGI application in C++ using cgicc, running on an embedded device. Now I came to the point where it is required to upload a large file to the device (the firmware package for updating). ...
1
vote
0answers
150 views
C CGI Script for JSON Web Service
I am new to CGI so please don't mind a stupid question from my side.
I want to create a Web service in CGI using C language which would communicate in JSON. But what I cannot understand is that how ...
1
vote
0answers
620 views
internal server errors - Premature end of script headers: cgi_wrapper
My website is getting random internal server errors only on php pages. In the log it says this is being caused by 'Premature end of script headers: cgi_wrapper'.
This issue is completely random, but ...
1
vote
0answers
135 views
Generating a data table from a CGI query with wget?
I need to create a dataset (a CSV table) based on multiple CGI queries in a statistical database of scientific citations and publications. Right now I'm filtering the initial data manually, doing CGI ...
1
vote
0answers
311 views
Why is Firefox claiming a reset connection
I'm working on a password maker page at http://JonathansCorner.com/passwords/. Because that page is not encrypted (and the site does not have an SSL certificate), I have a skeleton page that loads ...
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.
...


