blob: 55abd108e38b461d01150fc991a4899a741acaec [file] [log] [blame]
Guido van Rossum470be141995-03-17 16:07:09 +00001\section{Standard Module \sectcode{cgi}}
Guido van Rossume47da0a1997-07-17 16:34:52 +00002\label{module-cgi}
Guido van Rossuma12ef941995-02-27 17:53:25 +00003\stmodindex{cgi}
4\indexii{WWW}{server}
5\indexii{CGI}{protocol}
6\indexii{HTTP}{protocol}
7\indexii{MIME}{headers}
8\index{URL}
9
Guido van Rossum86751151995-02-28 17:14:32 +000010
Guido van Rossuma29cc971996-07-30 18:22:07 +000011Support module for CGI (Common Gateway Interface) scripts.
Guido van Rossuma12ef941995-02-27 17:53:25 +000012
Guido van Rossuma29cc971996-07-30 18:22:07 +000013This module defines a number of utilities for use by CGI scripts
14written in Python.
Guido van Rossuma12ef941995-02-27 17:53:25 +000015
Guido van Rossuma29cc971996-07-30 18:22:07 +000016\subsection{Introduction}
17\nodename{Introduction to the CGI module}
Guido van Rossuma12ef941995-02-27 17:53:25 +000018
Guido van Rossuma29cc971996-07-30 18:22:07 +000019A CGI script is invoked by an HTTP server, usually to process user
20input submitted through an HTML \code{<FORM>} or \code{<ISINPUT>} element.
21
Fred Drakea2e268a1997-12-09 03:28:42 +000022Most often, CGI scripts live in the server's special \file{cgi-bin}
Guido van Rossuma29cc971996-07-30 18:22:07 +000023directory. The HTTP server places all sorts of information about the
24request (such as the client's hostname, the requested URL, the query
25string, and lots of other goodies) in the script's shell environment,
26executes the script, and sends the script's output back to the client.
27
28The script's input is connected to the client too, and sometimes the
29form data is read this way; at other times the form data is passed via
Fred Drake6ef871c1998-03-12 06:52:05 +000030the ``query string'' part of the URL. This module is intended
Guido van Rossuma29cc971996-07-30 18:22:07 +000031to take care of the different cases and provide a simpler interface to
32the Python script. It also provides a number of utilities that help
33in debugging scripts, and the latest addition is support for file
Fred Drake6ef871c1998-03-12 06:52:05 +000034uploads from a form (if your browser supports it --- Grail 0.3 and
Guido van Rossuma29cc971996-07-30 18:22:07 +000035Netscape 2.0 do).
36
37The output of a CGI script should consist of two sections, separated
38by a blank line. The first section contains a number of headers,
39telling the client what kind of data is following. Python code to
40generate a minimal header section looks like this:
Guido van Rossuma12ef941995-02-27 17:53:25 +000041
Fred Drake19479911998-02-13 06:58:54 +000042\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +000043print "Content-type: text/html" # HTML is following
44print # blank line, end of headers
Fred Drake19479911998-02-13 06:58:54 +000045\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +000046
Guido van Rossuma29cc971996-07-30 18:22:07 +000047The second section is usually HTML, which allows the client software
48to display nicely formatted text with header, in-line images, etc.
49Here's Python code that prints a simple piece of HTML:
Guido van Rossum470be141995-03-17 16:07:09 +000050
Fred Drake19479911998-02-13 06:58:54 +000051\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +000052print "<TITLE>CGI script output</TITLE>"
53print "<H1>This is my first CGI script</H1>"
54print "Hello, world!"
Fred Drake19479911998-02-13 06:58:54 +000055\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +000056
Guido van Rossuma29cc971996-07-30 18:22:07 +000057(It may not be fully legal HTML according to the letter of the
58standard, but any browser will understand it.)
Guido van Rossum470be141995-03-17 16:07:09 +000059
Guido van Rossuma29cc971996-07-30 18:22:07 +000060\subsection{Using the cgi module}
61\nodename{Using the cgi module}
62
Fred Drake6ef871c1998-03-12 06:52:05 +000063Begin by writing \samp{import cgi}. Do not use \samp{from cgi import
64*} --- the module defines all sorts of names for its own use or for
65backward compatibility that you don't want in your namespace.
Guido van Rossuma29cc971996-07-30 18:22:07 +000066
Fred Drake6ef871c1998-03-12 06:52:05 +000067It's best to use the \class{FieldStorage} class. The other classes
68defined in this module are provided mostly for backward compatibility.
69Instantiate it exactly once, without arguments. This reads the form
70contents from standard input or the environment (depending on the
71value of various environment variables set according to the CGI
72standard). Since it may consume standard input, it should be
73instantiated only once.
Guido van Rossuma29cc971996-07-30 18:22:07 +000074
Fred Drake6ef871c1998-03-12 06:52:05 +000075The \class{FieldStorage} instance can be accessed as if it were a Python
Guido van Rossuma29cc971996-07-30 18:22:07 +000076dictionary. For instance, the following code (which assumes that the
Fred Drake6ef871c1998-03-12 06:52:05 +000077\code{content-type} header and blank line have already been printed)
78checks that the fields \code{name} and \code{addr} are both set to a
79non-empty string:
Guido van Rossum470be141995-03-17 16:07:09 +000080
Fred Drake19479911998-02-13 06:58:54 +000081\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +000082form = cgi.FieldStorage()
83form_ok = 0
84if form.has_key("name") and form.has_key("addr"):
85 if form["name"].value != "" and form["addr"].value != "":
86 form_ok = 1
87if not form_ok:
88 print "<H1>Error</H1>"
89 print "Please fill in the name and addr fields."
90 return
91...further form processing here...
Fred Drake19479911998-02-13 06:58:54 +000092\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +000093
94Here the fields, accessed through \samp{form[\var{key}]}, are
95themselves instances of \class{FieldStorage} (or
96\class{MiniFieldStorage}, depending on the form encoding).
Guido van Rossum470be141995-03-17 16:07:09 +000097
Guido van Rossuma29cc971996-07-30 18:22:07 +000098If the submitted form data contains more than one field with the same
Fred Drake6ef871c1998-03-12 06:52:05 +000099name, the object retrieved by \samp{form[\var{key}]} is not a
100\class{FieldStorage} or \class{MiniFieldStorage}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000101instance but a list of such instances. If you expect this possibility
102(i.e., when your HTML form comtains multiple fields with the same
Fred Drake6ef871c1998-03-12 06:52:05 +0000103name), use the \function{type()} function to determine whether you
104have a single instance or a list of instances. For example, here's
105code that concatenates any number of username fields, separated by
106commas:
Guido van Rossum470be141995-03-17 16:07:09 +0000107
Fred Drake19479911998-02-13 06:58:54 +0000108\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000109username = form["username"]
110if type(username) is type([]):
111 # Multiple username fields specified
112 usernames = ""
113 for item in username:
114 if usernames:
115 # Next item -- insert comma
116 usernames = usernames + "," + item.value
117 else:
118 # First item -- don't insert comma
119 usernames = item.value
120else:
121 # Single username field specified
122 usernames = username.value
Fred Drake19479911998-02-13 06:58:54 +0000123\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000124
125If a field represents an uploaded file, the value attribute reads the
126entire file in memory as a string. This may not be what you want.
127You can test for an uploaded file by testing either the filename
128attribute or the file attribute. You can then read the data at
129leasure from the file attribute:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000130
Fred Drake19479911998-02-13 06:58:54 +0000131\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000132fileitem = form["userfile"]
133if fileitem.file:
134 # It's an uploaded file; count lines
135 linecount = 0
136 while 1:
137 line = fileitem.file.readline()
138 if not line: break
139 linecount = linecount + 1
Fred Drake19479911998-02-13 06:58:54 +0000140\end{verbatim}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000141
Fred Drake6ef871c1998-03-12 06:52:05 +0000142The file upload draft standard entertains the possibility of uploading
143multiple files from one field (using a recursive
144\mimetype{multipart/*} encoding). When this occurs, the item will be
145a dictionary-like \class{FieldStorage} item. This can be determined
146by testing its \member{type} attribute, which should be
147\mimetype{multipart/form-data} (or perhaps another MIME type matching
148\mimetype{multipart/*}). It this case, it can be iterated over
149recursively just like the top-level form object.
150
151When a form is submitted in the ``old'' format (as the query string or
152as a single data part of type
153\mimetype{application/x-www-form-urlencoded}), the items will actually
154be instances of the class \class{MiniFieldStorage}. In this case, the
155list, file and filename attributes are always \code{None}.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000156
157
158\subsection{Old classes}
159
Fred Drake6ef871c1998-03-12 06:52:05 +0000160These classes, present in earlier versions of the \module{cgi} module,
161are still supported for backward compatibility. New applications
162should use the \class{FieldStorage} class.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000163
Fred Drake6ef871c1998-03-12 06:52:05 +0000164\class{SvFormContentDict} stores single value form content as
165dictionary; it assumes each field name occurs in the form only once.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000166
Fred Drake6ef871c1998-03-12 06:52:05 +0000167\class{FormContentDict} stores multiple value form content as a
168dictionary (the form items are lists of values). Useful if your form
169contains multiple fields with the same name.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000170
Fred Drake6ef871c1998-03-12 06:52:05 +0000171Other classes (\class{FormContent}, \class{InterpFormContentDict}) are
172present for backwards compatibility with really old applications only.
173If you still use these and would be inconvenienced when they
174disappeared from a next version of this module, drop me a note.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000175
176
177\subsection{Functions}
Fred Drake4b3f0311996-12-13 22:04:31 +0000178\nodename{Functions in cgi module}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000179
180These are useful if you want more control, or if you want to employ
181some of the algorithms implemented in this module in other
182circumstances.
183
Guido van Rossum81e479a1997-08-25 18:28:03 +0000184\begin{funcdesc}{parse}{fp}
Fred Drake6ef871c1998-03-12 06:52:05 +0000185Parse a query in the environment or from a file (default
186\code{sys.stdin}).
Guido van Rossuma29cc971996-07-30 18:22:07 +0000187\end{funcdesc}
188
Guido van Rossum81e479a1997-08-25 18:28:03 +0000189\begin{funcdesc}{parse_qs}{qs}
Fred Drake6ef871c1998-03-12 06:52:05 +0000190Parse a query string given as a string argument (data of type
191\mimetype{application/x-www-form-urlencoded}).
Guido van Rossuma29cc971996-07-30 18:22:07 +0000192\end{funcdesc}
193
Fred Drakecce10901998-03-17 06:33:25 +0000194\begin{funcdesc}{parse_multipart}{fp, pdict}
Fred Drake6ef871c1998-03-12 06:52:05 +0000195Parse input of type \mimetype{multipart/form-data} (for
196file uploads). Arguments are \var{fp} for the input file and
197\var{pdict} for the dictionary containing other parameters of
198\code{content-type} header
Guido van Rossuma29cc971996-07-30 18:22:07 +0000199
Fred Drake6ef871c1998-03-12 06:52:05 +0000200Returns a dictionary just like \function{parse_qs()} keys are the
201field names, each value is a list of values for that field. This is
202easy to use but not much good if you are expecting megabytes to be
203uploaded --- in that case, use the \class{FieldStorage} class instead
204which is much more flexible. Note that \code{content-type} is the
205raw, unparsed contents of the \code{content-type} header.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000206
Fred Drake6ef871c1998-03-12 06:52:05 +0000207Note that this does not parse nested multipart parts --- use
208\class{FieldStorage} for that.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000209\end{funcdesc}
210
Guido van Rossum81e479a1997-08-25 18:28:03 +0000211\begin{funcdesc}{parse_header}{string}
Fred Drake6ef871c1998-03-12 06:52:05 +0000212Parse a header like \code{content-type} into a main
Guido van Rossuma29cc971996-07-30 18:22:07 +0000213content-type and a dictionary of parameters.
214\end{funcdesc}
215
Guido van Rossum81e479a1997-08-25 18:28:03 +0000216\begin{funcdesc}{test}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000217Robust test CGI script, usable as main program.
218Writes minimal HTTP headers and formats all information provided to
219the script in HTML form.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000220\end{funcdesc}
221
Guido van Rossum81e479a1997-08-25 18:28:03 +0000222\begin{funcdesc}{print_environ}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000223Format the shell environment in HTML.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000224\end{funcdesc}
225
Guido van Rossum81e479a1997-08-25 18:28:03 +0000226\begin{funcdesc}{print_form}{form}
Fred Drake6ef871c1998-03-12 06:52:05 +0000227Format a form in HTML.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000228\end{funcdesc}
229
Guido van Rossum81e479a1997-08-25 18:28:03 +0000230\begin{funcdesc}{print_directory}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000231Format the current directory in HTML.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000232\end{funcdesc}
233
Guido van Rossum81e479a1997-08-25 18:28:03 +0000234\begin{funcdesc}{print_environ_usage}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000235Print a list of useful (used by CGI) environment variables in
Guido van Rossuma29cc971996-07-30 18:22:07 +0000236HTML.
237\end{funcdesc}
238
Fred Drakecce10901998-03-17 06:33:25 +0000239\begin{funcdesc}{escape}{s\optional{, quote}}
Fred Drake6ef871c1998-03-12 06:52:05 +0000240Convert the characters
241\character{\&}, \character{<} and \character{>} in string \var{s} to
242HTML-safe sequences. Use this if you need to display text that might
243contain such characters in HTML. If the optional flag \var{quote} is
244true, the double quote character (\character{"}) is also translated;
245this helps for inclusion in an HTML attribute value, e.g. in \code{<A
246HREF="...">}.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000247\end{funcdesc}
248
249
250\subsection{Caring about security}
251
252There's one important rule: if you invoke an external program (e.g.
Fred Drake6ef871c1998-03-12 06:52:05 +0000253via the \function{os.system()} or \function{os.popen()} functions),
254make very sure you don't pass arbitrary strings received from the
255client to the shell. This is a well-known security hole whereby
256clever hackers anywhere on the web can exploit a gullible CGI script
257to invoke arbitrary shell commands. Even parts of the URL or field
258names cannot be trusted, since the request doesn't have to come from
259your form!
Guido van Rossuma29cc971996-07-30 18:22:07 +0000260
261To be on the safe side, if you must pass a string gotten from a form
262to a shell command, you should make sure the string contains only
263alphanumeric characters, dashes, underscores, and periods.
264
265
266\subsection{Installing your CGI script on a Unix system}
267
268Read the documentation for your HTTP server and check with your local
269system administrator to find the directory where CGI scripts should be
Fred Drakea2e268a1997-12-09 03:28:42 +0000270installed; usually this is in a directory \file{cgi-bin} in the server tree.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000271
272Make sure that your script is readable and executable by ``others''; the
Fred Drake6ef871c1998-03-12 06:52:05 +0000273\UNIX{} file mode should be \code{0755} octal (use \samp{chmod 0755
274filename}). Make sure that the first line of the script contains
275\code{\#!} starting in column 1 followed by the pathname of the Python
276interpreter, for instance:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000277
Fred Drake19479911998-02-13 06:58:54 +0000278\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000279#!/usr/local/bin/python
Fred Drake19479911998-02-13 06:58:54 +0000280\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000281
Guido van Rossuma29cc971996-07-30 18:22:07 +0000282Make sure the Python interpreter exists and is executable by ``others''.
283
284Make sure that any files your script needs to read or write are
Fred Drake6ef871c1998-03-12 06:52:05 +0000285readable or writable, respectively, by ``others'' --- their mode
286should be \code{0644} for readable and \code{0666} for writable. This
287is because, for security reasons, the HTTP server executes your script
288as user ``nobody'', without any special privileges. It can only read
289(write, execute) files that everybody can read (write, execute). The
290current directory at execution time is also different (it is usually
291the server's cgi-bin directory) and the set of environment variables
292is also different from what you get at login. In particular, don't
293count on the shell's search path for executables (\envvar{PATH}) or
294the Python module search path (\envvar{PYTHONPATH}) to be set to
295anything interesting.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000296
297If you need to load modules from a directory which is not on Python's
298default module search path, you can change the path in your script,
299before importing other modules, e.g.:
300
Fred Drake19479911998-02-13 06:58:54 +0000301\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000302import sys
303sys.path.insert(0, "/usr/home/joe/lib/python")
304sys.path.insert(0, "/usr/local/lib/python")
Fred Drake19479911998-02-13 06:58:54 +0000305\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000306
Guido van Rossuma29cc971996-07-30 18:22:07 +0000307(This way, the directory inserted last will be searched first!)
308
Fred Drakeefc1e0f1998-01-13 19:00:33 +0000309Instructions for non-\UNIX{} systems will vary; check your HTTP server's
Guido van Rossuma29cc971996-07-30 18:22:07 +0000310documentation (it will usually have a section on CGI scripts).
311
312
313\subsection{Testing your CGI script}
314
315Unfortunately, a CGI script will generally not run when you try it
316from the command line, and a script that works perfectly from the
317command line may fail mysteriously when run from the server. There's
318one reason why you should still test your script from the command
319line: if it contains a syntax error, the python interpreter won't
320execute it at all, and the HTTP server will most likely send a cryptic
321error to the client.
322
323Assuming your script has no syntax errors, yet it does not work, you
Fred Drake6ef871c1998-03-12 06:52:05 +0000324have no choice but to read the next section.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000325
326
327\subsection{Debugging CGI scripts}
328
Fred Drake6ef871c1998-03-12 06:52:05 +0000329First of all, check for trivial installation errors --- reading the
Guido van Rossuma29cc971996-07-30 18:22:07 +0000330section above on installing your CGI script carefully can save you a
331lot of time. If you wonder whether you have understood the
332installation procedure correctly, try installing a copy of this module
Fred Drakea2e268a1997-12-09 03:28:42 +0000333file (\file{cgi.py}) as a CGI script. When invoked as a script, the file
Guido van Rossuma29cc971996-07-30 18:22:07 +0000334will dump its environment and the contents of the form in HTML form.
335Give it the right mode etc, and send it a request. If it's installed
Fred Drakea2e268a1997-12-09 03:28:42 +0000336in the standard \file{cgi-bin} directory, it should be possible to send it a
Guido van Rossuma29cc971996-07-30 18:22:07 +0000337request by entering a URL into your browser of the form:
338
Fred Drake19479911998-02-13 06:58:54 +0000339\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000340http://yourhostname/cgi-bin/cgi.py?name=Joe+Blow&addr=At+Home
Fred Drake19479911998-02-13 06:58:54 +0000341\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000342
Guido van Rossuma29cc971996-07-30 18:22:07 +0000343If this gives an error of type 404, the server cannot find the script
344-- perhaps you need to install it in a different directory. If it
345gives another error (e.g. 500), there's an installation problem that
346you should fix before trying to go any further. If you get a nicely
347formatted listing of the environment and form content (in this
348example, the fields should be listed as ``addr'' with value ``At Home''
Fred Drakea2e268a1997-12-09 03:28:42 +0000349and ``name'' with value ``Joe Blow''), the \file{cgi.py} script has been
Guido van Rossuma29cc971996-07-30 18:22:07 +0000350installed correctly. If you follow the same procedure for your own
351script, you should now be able to debug it.
352
Fred Drake6ef871c1998-03-12 06:52:05 +0000353The next step could be to call the \module{cgi} module's
354\function{test()} function from your script: replace its main code
355with the single statement
Guido van Rossuma29cc971996-07-30 18:22:07 +0000356
Fred Drake19479911998-02-13 06:58:54 +0000357\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000358cgi.test()
Fred Drake19479911998-02-13 06:58:54 +0000359\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000360
Guido van Rossuma29cc971996-07-30 18:22:07 +0000361This should produce the same results as those gotten from installing
Fred Drakea2e268a1997-12-09 03:28:42 +0000362the \file{cgi.py} file itself.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000363
364When an ordinary Python script raises an unhandled exception
365(e.g. because of a typo in a module name, a file that can't be opened,
366etc.), the Python interpreter prints a nice traceback and exits.
367While the Python interpreter will still do this when your CGI script
368raises an exception, most likely the traceback will end up in one of
369the HTTP server's log file, or be discarded altogether.
370
371Fortunately, once you have managed to get your script to execute
Fred Drake6ef871c1998-03-12 06:52:05 +0000372\emph{some} code, it is easy to catch exceptions and cause a traceback
373to be printed. The \function{test()} function below in this module is
374an example. Here are the rules:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000375
376\begin{enumerate}
Fred Drake6ef871c1998-03-12 06:52:05 +0000377\item Import the traceback module before entering the \keyword{try}
378 ... \keyword{except} statement
379
380\item Assign \code{sys.stderr} to be \code{sys.stdout}
381
382\item Make sure you finish printing the headers and the blank line
383 early
384
385\item Wrap all remaining code in a \keyword{try} ... \keyword{except}
386 statement
387
388\item In the except clause, call \function{traceback.print_exc()}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000389\end{enumerate}
390
391For example:
392
Fred Drake19479911998-02-13 06:58:54 +0000393\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000394import sys
395import traceback
396print "Content-type: text/html"
397print
398sys.stderr = sys.stdout
399try:
400 ...your code here...
401except:
402 print "\n\n<PRE>"
403 traceback.print_exc()
Fred Drake19479911998-02-13 06:58:54 +0000404\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000405
406Notes: The assignment to \code{sys.stderr} is needed because the
407traceback prints to \code{sys.stderr}.
Guido van Rossum9d62e801997-11-25 00:35:44 +0000408The \code{print "{\e}n{\e}n<PRE>"} statement is necessary to
Guido van Rossuma29cc971996-07-30 18:22:07 +0000409disable the word wrapping in HTML.
410
411If you suspect that there may be a problem in importing the traceback
412module, you can use an even more robust approach (which only uses
413built-in modules):
414
Fred Drake19479911998-02-13 06:58:54 +0000415\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000416import sys
417sys.stderr = sys.stdout
418print "Content-type: text/plain"
419print
420...your code here...
Fred Drake19479911998-02-13 06:58:54 +0000421\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000422
Guido van Rossuma29cc971996-07-30 18:22:07 +0000423This relies on the Python interpreter to print the traceback. The
424content type of the output is set to plain text, which disables all
425HTML processing. If your script works, the raw HTML will be displayed
426by your client. If it raises an exception, most likely after the
427first two lines have been printed, a traceback will be displayed.
428Because no HTML interpretation is going on, the traceback will
429readable.
430
431
432\subsection{Common problems and solutions}
Guido van Rossum470be141995-03-17 16:07:09 +0000433
434\begin{itemize}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000435\item Most HTTP servers buffer the output from CGI scripts until the
436script is completed. This means that it is not possible to display a
437progress report on the client's display while the script is running.
438
439\item Check the installation instructions above.
440
Fred Drake6ef871c1998-03-12 06:52:05 +0000441\item Check the HTTP server's log files. (\samp{tail -f logfile} in a
442separate window may be useful!)
Guido van Rossuma29cc971996-07-30 18:22:07 +0000443
444\item Always check a script for syntax errors first, by doing something
Fred Drake6ef871c1998-03-12 06:52:05 +0000445like \samp{python script.py}.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000446
447\item When using any of the debugging techniques, don't forget to add
Fred Drake6ef871c1998-03-12 06:52:05 +0000448\samp{import sys} to the top of the script.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000449
450\item When invoking external programs, make sure they can be found.
Fred Drake6ef871c1998-03-12 06:52:05 +0000451Usually, this means using absolute path names --- \envvar{PATH} is
452usually not set to a very useful value in a CGI script.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000453
454\item When reading or writing external files, make sure they can be read
455or written by every user on the system.
456
457\item Don't try to give a CGI script a set-uid mode. This doesn't work on
458most systems, and is a security liability as well.
Guido van Rossum470be141995-03-17 16:07:09 +0000459\end{itemize}
460