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

learn more… | top users | synonyms

0
votes
2answers
42 views

Communication between PHP and Perl CGI scripts

I have two scripts that carry out different tasks on a server. One is written in Perl (.cgi) the other in PHP. I am trying to send out a request from the perl CGI script by doing something like this: ...
0
votes
1answer
20 views

Python deadlock error - Trying to retreive key value from shelve

Here is my code where i am updating record in shelve def updateRecord(db, form): if not 'key' in form: fields = dict.fromkeys(fieldnames, '?') fields['key'] = 'Missing key input' ...
2
votes
1answer
16 views

Is running a C/C++ CGI script on Apache dangerous?

I am currently programming my own little website system (a script that compiles Markdown documents, and puts them in appropriate locations, thus making a quick, static website). I would like to enable ...
0
votes
0answers
20 views

C++ CGI Programming using thru mode - error collecting data from user

New to this site, I'm hoping I can get a little help. I have an Apache server setup, and I am trying to collect some information from the user. I have a table set up, which looks like this ...
0
votes
0answers
12 views

Installing Python module package on Apache Server

So I have this package of Python modules I'd like to use. "Pattern" module package I've successfully installed and ran it on my OSX machine which is fine. However, I'd like to use some of the ...
0
votes
0answers
13 views

Getting a 403 error in Apache when trying to configure a alias to cgi-bin

As in title, I'm trying to configure a ScriptAlias to cgi-bin on Apache2 on OS X. Whenever I try to access it, however, I end up with a 403 Forbidden error. I think the relevant lines from ...
0
votes
0answers
11 views

Access File Stored in the Root Directory (as opposed to being a child of public_html)

How do I access file/scripts stored in a subfolder of my root folder from something in a site directory (e.g. access /python/test.py from public_html/site1/cgi-bin/example.py)?
0
votes
1answer
25 views

Show html dropdown list according chosen options

I'm building an small web app querying a database with python CGI. The logic is: HTML Form - Python CGI - SQL query - python cgi prints results. At the moment it works, but now I'm stuck creating ...
0
votes
1answer
9 views

How to check the SQL query result for specfic data while using Python+CGI+SQLite3?

I need to check if table which holds credentials has record with matched username and password. I use COUNT because it's easier to parse one int value. How to check (using Python) if there are 1 or ...
-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
votes
1answer
63 views

First cgi script in perl and don't know what it does

I am new to Perl and I am looking into CGI programs. I tried the following from Perl Monks and it works. But I have no idea what it does. 1) What is the END_HERE? that is followed by HTML? : print ...
0
votes
1answer
14 views

“import nltk” - Not working on xampp

I'm new to python and nltk. I have problem on import nltk. I installed python in xampp on windows under the path C:\xampp\Python. And I installed nltk under the path C:\xampp\Python. After this I ...
-6
votes
2answers
56 views

What is a CGI in Perl [duplicate]

I'm new to Perl and so far in my reading-a-book-to-learn-perl learning process its good until i encountered this CGI thing. What does it do? Can anyone site a good example where CGI is used in Perl.
1
vote
1answer
87 views

Py2Exe local server does not execute CGI

I have a certain Python program that relies on a CGI script, which works when I launch a Python BaseHTTPServer with a CGIHTTPServer. But I would like all this to be run without installing Python, so I ...
0
votes
0answers
18 views

Using python to login to a webpage using a cgi script

Logging into web servers is not my area of expertise, and I am looking to automate a task of logging into a web server, but I am not sure how I need to format my code to achieve this goal. I have ...
0
votes
2answers
48 views

How to sort textbooks by type by color code, or category in bookweb using html, javascript, css or other?

I am currently trying to sort a textbook list that is generated dynamically by bookweb ( a bookshop cart solution). I want to order the cart by the textbook type either prescribed or recommended. ...
0
votes
0answers
9 views

Desperate with Apache2 and cgi (Ubuntu 12.04). Help :(

m having an issue installing apache2 in Ubuntu 12.04. Im trying to set the cgi-bin folder in the path /home/www/cgi-bin. Ive followed and search all over the internet but I still dont get it... ...
0
votes
2answers
26 views

How to get python os.environ parameters from cgi script?

When I use os.environ.keys() in command line I get different environment variables than in cgi script. Is there a way to get python enviroment variables through cgi script? Using subprocess.Popen ...
0
votes
0answers
6 views

How get dataflow from inetd for CGI-CLI script webserver on Android built in Busybox-non-root apk

I have found a simple bash commandline script that acts like a CGI-CLI webserver (http://www.debian-administration.org/article/A_web_server_in_a_shell_script). It should also be possible to use this ...
0
votes
0answers
18 views

Guide me to run a perl cgi program in browser,i am using windows7 and installed strawberry perl [migrated]

Please help me for this request, I am a beginner at CGI and Perl I tried to install Perl, but I am getting the following error: HTTP Error 404.3 - Not Found The page you are requesting ...
0
votes
2answers
14 views

Python CGI script returning inconsistent results

So I have a Python CGI script running on my apache server. Basically, from a webpage, the user enters a word into a form, and that word is passed to the script. The word is then used to query the ...
0
votes
2answers
35 views

Use bat file in CGI Python on localhost

I'm quite stuck with with a complex mix of files and languages! The problem: My webform starts a python script, as a cgi script, on localhost(apache). In this python script I want to execute a ...
1
vote
1answer
52 views

Perl create byte array and file stream

I need to be able to send a file stream and a byte array as a response to an HTTP POST for the testing of a product. I am using CGI perl for the back end, but I am not very familiar with Perl yet, ...
0
votes
0answers
17 views

Creating a CGI in C++ that downloads variable data from a server

In my application, the user will be able to search in a MySQL server for a specific data in a series of possibilities. This server may be in another computer connected via LAN, so the need for a CGI. ...
0
votes
0answers
13 views

Any issues with CGIHTTPServer on Ubuntu 10.04?

I have a test python server running on Ubuntu 10.04 LTS using python's BaseHTTPServer and CGIHTTPServer as below. It worked fine for over a year until rebooting the machine at which point it flatly ...
3
votes
1answer
2k views

Why can't Nginx POST to my Perl backend?

EDIT: So I just found out that GET methods indeed work, but POST methods however do not work! That might be significant. So I am on Debian Etch, running Nginx. Nginx does not normally serve cgi/pl ...
0
votes
1answer
24 views

Accessing fields with Python CGI FieldStorage from a JQuery AJAX call

I have written some JQuery that makes an ajax call to a Python script. I've been successful in passing strings back and forth between them, but I'm getting weird behaviour from the CGI FieldStorage ...
0
votes
1answer
20 views

html text link to deliver a string to a python file

how to create a html text link that delivers a KNOWN string to a python file, then redirects you to that python file? i'm thinking somthing like this lets say the string i want to deliver is ...
2
votes
1answer
1k views

How to deploy a gSOAP Web Service in Ubuntu?

I have a doubt concerning the deployment of a Web Service in Ubuntu. It was implemented using gSOAP and it should be deployed, e.g. be accessible from websites (which are developed in e.g. ASP .NET). ...
0
votes
3answers
64 views

Perl param() receiving from its own print HTML

I have a Perl script that reads in data from a database and prints out the result in HTML forms/tables. The form of each book also contains a submit button. I want Perl to create a text file (or read ...
1
vote
0answers
18 views

how to access latex chemfig online using cgi ?

If Latex is installed on server, Is there any way to create cgi file using latex installation , which can be used to create chemical equations & structures? While searching online, i found ...
-1
votes
0answers
15 views

php cgi is crashing on Windows 2003 running with nginx - why? [closed]

I'd like to ask you guys why it's crashing every 2-3 hours. I've been searching a lot but no clue still ... and what's the best code to use when starting php cgi ? Currently I'm using: location ...
-3
votes
0answers
31 views

PERL CGI Form Processing while URL change

Testing web page: > http://mypage/ contains 3 divs. One div has search form, and div shows content based on search term, and third one is useless for now. When I enter query term, say apple in ...
1
vote
1answer
20 views

retreiving value from CGI form textbox out of MySQL table

Hey guys I have this form that looks like so in a cgi file: print "<FORM NAME='LAYOUTFORM' ACTION='Handler.cgi' METHOD=POST>"; print "<table border='0' align=center>\n"; print ...
1
vote
1answer
54 views

How to create dynamically sized HTML table?

I have a Perl CGI script. I would like to make a dynamic, appropriately-sized table based on query information from a simple HTML form: http://jsfiddle.net/wBgBZ/4/. I wanted to use HTML::Table but ...
0
votes
1answer
45 views

How to execute one perl script from website in perl?

I am trying to run perl script that doing some things and creating files from web browser page in perl. I am using Windows 7. This is source: use CGI; use warnings; use strict; print ...
1
vote
1answer
28 views

How to display multiple entries from an HTML form?

I have a Perl CGI script. I'm trying to display the user entries on every line but it's not working. Here's what I have so far: #!/usr/bin/perl use strict; use warnings; use CGI qw( :standard); ...
1
vote
3answers
121 views

IIS 7.5 Mercurial setup ignoring maxAllowedContentLength

I'm trying to setup Mercurial on IIS 7.5. I have a web.config for an application directory that is ignoring the maxAllowedContentLength attribute and I simply cannot get IIS to accept it! I've tried ...
0
votes
0answers
18 views

Yesod app deployment as CGI program

Already managed to create a Yesod application running in "yesod -d devel". After that, I modified as in article Configure Yesod app as CGI (I'm restricted to CGI and won't have any of the development ...
-1
votes
0answers
41 views

SQLite connecting to database error

I want to select something from SQLite database and print it to website in perl. This is my source: use warnings; use strict; use CGI; use DBI; my $filename = './dataperl.db'; my $dbh = ...
0
votes
0answers
3 views

Redirection Port Apache or CGI

I want to redirect one Apache server to another Apache server. IP of server are same but port changed. I want to redirect: https://192.168.1.1:8080/cgi-bin/mypage.cgi to ...
0
votes
2answers
34 views

Any reason not to just import CGI in Python?

Any reason to try and replace it with something else? I'm a beginner to python, but have encountered problems with C and importing CGI. List of instance where import cgi would not be the best option ...
0
votes
3answers
308 views

Unable to write to file programmatically on linux server

I have a python CGI script which takes form input x andy (integers) and passes it to a C++ executable using subprocess in which the program writes the sum of the two values to a text file. The code ...
0
votes
0answers
17 views

CGI Script Send Mail error

Hopefully someone can help a user that has zero experience with CGI coding. Prior to yesterday, the following code was working fine when our clients would submit their orders. Then yesterday an ...
0
votes
0answers
14 views

How do I redirect to another script using CGI?

I'm having a problem with CGI. I'm developing an app using CGI in Ruby, not in Ruby on Rails. I have a CGI script in which HTML tags are there to enter the values in a textbox, and, after clicking ...
0
votes
4answers
3k views

Firefox / Chrome shows plain text from cgi script

I currently have an internal website that is running Apache. It is serving some cgi script webpages (perl code). Recently in Firefox and Chrome it is starting to show plain text version of the HTML ...
2
votes
1answer
309 views

Mono hangs when called from a CGI script

I have a program written in C# which I need to call from a CGI script. When I call the program from either a python or bash CGI script: #!/bin/bash echo Content-type: text/plain echo echo ...
1
vote
3answers
66 views

Perl CGI Functional Programming - generating links

I have a Perl CGI script. I'm trying to generate hyperlinks on an HTML page using all the elements in an array. I'm using functional CGI style programming. Here's a minimal representation of my code: ...
0
votes
2answers
24 views

Web page which passes variables to shell script

I currently use a shell script we use to move data around, which is run with the following syntax: ./script.sh <env> <y|n> <file> <file> <file> <file> <file> ...
0
votes
0answers
16 views

render html(+images) in cgi python

I have an html page which I can run in python CGI like this print with open('index.html') as f: print f.read() My page shows up in the browser but It doesn't show the images which are linked ...

1 2 3 4 5 46