0
votes
0answers
15 views
setting up my cgi script on mod_wsgi
I have a basic cgi script that I would to be called from mod_wsgi. I have already set up a basic hello world example on mod_wsgi. How do I set my cgi script on mod_wsgi?
I understand that there's an ...
0
votes
1answer
16 views
Display HTTP Response Message in HTML using CGI (Python)
I have created a local server which sends a HTTP POST message to http://httpbin.org/post and then prints the return message on the screen.
The python CGI code that runs at the back end prints the ...
0
votes
1answer
25 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'
...
0
votes
0answers
13 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
12 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
31 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
10 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
vote
1answer
49 views
+50
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
27 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
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
36 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 ...
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 ...
0
votes
1answer
31 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 ...
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
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
vote
1answer
39 views
How can I replace named vars in a string in python from an incomplete dictionary?
I have a long html form I'm retriving data from and then populating in an html document and emailing it. I'm using form = cgi.FieldStorage() to get the data posted from my form and then I have a ...
0
votes
1answer
24 views
Using custom module with Python CGI script
I'm running a python CGI script on my localhost that needs to import and use another python module that I wrote. I placed the CGI script in the Apache cgi-bin directory (I'm running this on windows). ...
0
votes
1answer
35 views
Running python scripts from lighttpd - Firefox asking to save file
I am trying to run a simple Python script from my lighttpd server. The HTML code is:
<html>
<title>Interactive page</title>
<body>
<form method=POST ...
0
votes
0answers
38 views
WAMP not recognizing .py as CGI
I'm trying to execute .py files as CGI program and I'am using WAMP to do it.
But WAMP just isn't recognizing it as a CGI file so when I open it through localhost, I can just see the python code ...
0
votes
1answer
73 views
How to host Python on web server? [closed]
I, as of now, have only uploaded only PHP files on my web server. I'm planning to host only Python files. I want to use Jinja2 template. I have my web server on BigRock. They claim here, that they ...
1
vote
4answers
74 views
CGI programming with Python using WAMP and HTML
I'm trying to connect an HTML file with python
Here's my HTML code
<html>
<head>
</head>
<body>
<form method="POST" action="C:\wamp\www\cgi-bin\nidhi.py">
...
0
votes
1answer
46 views
Python cgi script displays output in the browser only after its completion
I noticed that the python cgi script displays the output only after it has completed its execution, Is there a way, I could make the script to continue its execution and print the results continously. ...
1
vote
3answers
60 views
Error on python web page
I have installed Python and configured in apache. I created a Python web file and open this in browser, I get an error. But the same code working in command-line. I hope the problem is from my apache ...
0
votes
0answers
60 views
Using multiple file input fields in an HTML form
Is there some trick to using multiple file input fields in an html form? I tried using 3 of them so that 3 files can be uploaded at once but on the page that the form POSTs to only the first input ...
0
votes
2answers
46 views
Python CGI Shopping Cart - Can't post or print more than one value?
I'm struggling to discover why my CGI python script will only print one value it obtains from an order form. I have a form on order.html with the following opening tag-
<form name="cInformation" ...
0
votes
0answers
15 views
Python CGIServer is not redirecting to index.html
I have the following script as my CGI Server:
import BaseHTTPServer
import CGIHTTPServer
import cgitb; cgitb.enable() ## This line enables CGI error reporting
server = BaseHTTPServer.HTTPServer
...
0
votes
0answers
56 views
Hello World in Python on Apache
I have been dabbling in Python over the past few weeks and thought it might be fun to mess around with writing some output in python on a website. Understanding that apache isn't the "ideal" ...
1
vote
0answers
85 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 ...
2
votes
2answers
109 views
unable to run java command from cgi
I have this function to read a doc file using tika on linux:
def read_doc(doc_path):
output_path=doc_path+'.txt'
java_path='/home/jdk1.7.0_17/jre/bin/'
environ = os.environ.copy()
...
0
votes
0answers
25 views
MySQLDB import error in CGI python Script
I write following script in cgi-bin and if I run this script from browser by entering URL then script gives an 500 internal server error.
#!/usr/bin/python
import MySQLdb
import cgi
print ...
0
votes
1answer
36 views
getting error on browser refresh using cookies in python
Here is my form.html
form name="form1" action="/cgi-bin/form2.py" method="post"
input type="text" name="firstname"
input type="submit" value="submit"
and below is my form2.py
import cgi
print ...
0
votes
0answers
34 views
Apache CGI script: File does not exist (Trying to access file outside cgi-bin)
I have a cgi script that needs to output html that contains a script outside the cgi-bin directory. Unfortunately, for the apache err_log it appears that the script is still being searched for within ...
0
votes
2answers
32 views
calling Python cgi fieldstorage multiple times
I'm not too familiar with cgi.FieldStorage() for python and I'm running into trouble in my project. Basically, on my main page, I have a html form named criterion. The form's action calls process.py ...
0
votes
1answer
45 views
how to refresh browser automatically using cgi + python
i have form.html and form.py files. In form.html file i have a text box and a button when i enter some keyword in the text box and submit it, it executes form.py based on the keyword entered and it ...
0
votes
0answers
39 views
Deserealize JSON using json.loads
I have got a Internal Server Error when I use json.loads in my cgi website.
I tried to deserealize the same data in the Interpreter and it worked.
print "Content-Type: application/json\n\n";
...
1
vote
0answers
49 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
...
0
votes
2answers
55 views
How to Combine Html + CSS code with python function?
I have zero experience with website development but am working on a group project and am wondering whether it would be possible to create an interaction between a simple html/css website and my python ...
0
votes
1answer
62 views
Python: How can I gather and parse csv data from a webpage?
I have a webpage that prints out csv data using a cgi script. I want to parse the data using Python. So far I know that I can use urllib to request the url and obtain the html into one giant byte ...
0
votes
1answer
34 views
Python2 to python3 lists and bytes vs strings
I have a list of IP addresses I telnet to and gather data from. I put this data into two variables. I then want to print the data from the variables into a HTML table. It worked in Python 2 but ...
0
votes
0answers
49 views
Deploying a Flask app to shared hosting at godaddy
I got shared economy hosting at godaddy, and I finally got cgi working with python. I created a simple cgi script:
#!/../bin/python
print "Content-type: text/html\n\n"
print "<body ...
0
votes
0answers
35 views
Python: How to call cgi script from another cgi script with variables (POST)
What I would like to do is to make 3 cgi scripts. The first prints a form. Then this form POSTS the data to the next which does the data checking making sure it is all valid. NOW here is the hard ...
0
votes
2answers
63 views
How to call a python cgi script from another stript
Although I can see many responses to similar questions, I don't really think they answer mine. Basically, I have a python cgi script and I want to run another script. So for instance, let's say that I ...
0
votes
0answers
46 views
CGI for newbs: CGI as alternative to command line interface? [closed]
I develop scientific software in Python, and everything I've implemented requires a user to log into a terminal and use a command line interface. We want to explore a CGI interface as an alternative ...
0
votes
0answers
64 views
How to send email with ZIP attachments from web server in Python
I have a question about sending an email with ZIP attachments in Python. Here is how I am doing it:
def send_mail(send_from, send_to, subject, text, files=[], server="localhost"):
assert ...
0
votes
1answer
19 views
Using the replace() function in Python returns seemingly random string when used on CGI Script
In a fairly complex Python CGI script, I receive a string from a form in the client's web page. The string is a date and time value with the format "YYYY-MM-DD HH-MM-SS" and it reaches the script ...
0
votes
1answer
63 views
In my Python CGI script, how do I save to disk a file uploaded via POST request of data entered by the user in a form?
The client has a simple form that takes a text and a file:
<form name="add_show" id="add_show" action="" method="GET">
<label class="text-info">Show Name:</label>
<input ...
1
vote
1answer
74 views
import python module in home directory in CGI script
I have a CGI script that needs mechanize, but it is not installed system wide on my web host. I installed it in my home directory
$HOME/.local/lib/python2.7/site-packages/mechanize-0.2.5-py2.7.egg
...
2
votes
1answer
92 views
run python script as cgi apache server
I am trying to make a python script run as cgi, using an Apache server. My script looks something like this:
#!/usr/bin/python
import cgi
if __name__ == "__main__":
print("Content-type: ...
0
votes
2answers
42 views
MYSql CGI Script
Below Code is my CGI Script, where am trying to do a insert Command.
#! C:\Python27\python.exe -u
import cgi
import MySQLdb
import xml.sax.saxutils
query = cgi.parse()
db = MySQLdb.connect(
host ...


