blob: 4b01862e5b9a7189a1922fec953e7ab2d54ca31a [file] [log] [blame]
Fred Drake6a79be81998-04-03 03:47:03 +00001\section{Standard Module \module{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
Fred Drake6a79be81998-04-03 03:47:03 +000011Support module for CGI (Common Gateway Interface) scripts.%
12\index{Common Gateway Interface}
Guido van Rossuma12ef941995-02-27 17:53:25 +000013
Guido van Rossuma29cc971996-07-30 18:22:07 +000014This module defines a number of utilities for use by CGI scripts
15written in Python.
Guido van Rossuma12ef941995-02-27 17:53:25 +000016
Guido van Rossuma29cc971996-07-30 18:22:07 +000017\subsection{Introduction}
18\nodename{Introduction to the CGI module}
Guido van Rossuma12ef941995-02-27 17:53:25 +000019
Guido van Rossuma29cc971996-07-30 18:22:07 +000020A CGI script is invoked by an HTTP server, usually to process user
21input submitted through an HTML \code{<FORM>} or \code{<ISINPUT>} element.
22
Fred Drakea2e268a1997-12-09 03:28:42 +000023Most often, CGI scripts live in the server's special \file{cgi-bin}
Guido van Rossuma29cc971996-07-30 18:22:07 +000024directory. The HTTP server places all sorts of information about the
25request (such as the client's hostname, the requested URL, the query
26string, and lots of other goodies) in the script's shell environment,
27executes the script, and sends the script's output back to the client.
28
29The script's input is connected to the client too, and sometimes the
30form data is read this way; at other times the form data is passed via
Fred Drake6ef871c1998-03-12 06:52:05 +000031the ``query string'' part of the URL. This module is intended
Guido van Rossuma29cc971996-07-30 18:22:07 +000032to take care of the different cases and provide a simpler interface to
33the Python script. It also provides a number of utilities that help
34in debugging scripts, and the latest addition is support for file
Fred Drake6ef871c1998-03-12 06:52:05 +000035uploads from a form (if your browser supports it --- Grail 0.3 and
Guido van Rossuma29cc971996-07-30 18:22:07 +000036Netscape 2.0 do).
37
38The output of a CGI script should consist of two sections, separated
39by a blank line. The first section contains a number of headers,
40telling the client what kind of data is following. Python code to
41generate a minimal header section looks like this:
Guido van Rossuma12ef941995-02-27 17:53:25 +000042
Fred Drake19479911998-02-13 06:58:54 +000043\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +000044print "Content-type: text/html" # HTML is following
45print # blank line, end of headers
Fred Drake19479911998-02-13 06:58:54 +000046\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +000047
Guido van Rossuma29cc971996-07-30 18:22:07 +000048The second section is usually HTML, which allows the client software
49to display nicely formatted text with header, in-line images, etc.
50Here's Python code that prints a simple piece of HTML:
Guido van Rossum470be141995-03-17 16:07:09 +000051
Fred Drake19479911998-02-13 06:58:54 +000052\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +000053print "<TITLE>CGI script output</TITLE>"
54print "<H1>This is my first CGI script</H1>"
55print "Hello, world!"
Fred Drake19479911998-02-13 06:58:54 +000056\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +000057
Guido van Rossuma29cc971996-07-30 18:22:07 +000058(It may not be fully legal HTML according to the letter of the
59standard, but any browser will understand it.)
Guido van Rossum470be141995-03-17 16:07:09 +000060
Guido van Rossuma29cc971996-07-30 18:22:07 +000061\subsection{Using the cgi module}
62\nodename{Using the cgi module}
63
Fred Drake6ef871c1998-03-12 06:52:05 +000064Begin by writing \samp{import cgi}. Do not use \samp{from cgi import
65*} --- the module defines all sorts of names for its own use or for
66backward compatibility that you don't want in your namespace.
Guido van Rossuma29cc971996-07-30 18:22:07 +000067
Fred Drake6ef871c1998-03-12 06:52:05 +000068It's best to use the \class{FieldStorage} class. The other classes
69defined in this module are provided mostly for backward compatibility.
70Instantiate it exactly once, without arguments. This reads the form
71contents from standard input or the environment (depending on the
72value of various environment variables set according to the CGI
73standard). Since it may consume standard input, it should be
74instantiated only once.
Guido van Rossuma29cc971996-07-30 18:22:07 +000075
Fred Drake6ef871c1998-03-12 06:52:05 +000076The \class{FieldStorage} instance can be accessed as if it were a Python
Guido van Rossuma29cc971996-07-30 18:22:07 +000077dictionary. For instance, the following code (which assumes that the
Fred Drake6ef871c1998-03-12 06:52:05 +000078\code{content-type} header and blank line have already been printed)
79checks that the fields \code{name} and \code{addr} are both set to a
80non-empty string:
Guido van Rossum470be141995-03-17 16:07:09 +000081
Fred Drake19479911998-02-13 06:58:54 +000082\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +000083form = cgi.FieldStorage()
84form_ok = 0
85if form.has_key("name") and form.has_key("addr"):
86 if form["name"].value != "" and form["addr"].value != "":
87 form_ok = 1
88if not form_ok:
89 print "<H1>Error</H1>"
90 print "Please fill in the name and addr fields."
91 return
92...further form processing here...
Fred Drake19479911998-02-13 06:58:54 +000093\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +000094
95Here the fields, accessed through \samp{form[\var{key}]}, are
96themselves instances of \class{FieldStorage} (or
97\class{MiniFieldStorage}, depending on the form encoding).
Guido van Rossum470be141995-03-17 16:07:09 +000098
Guido van Rossuma29cc971996-07-30 18:22:07 +000099If the submitted form data contains more than one field with the same
Fred Drake6ef871c1998-03-12 06:52:05 +0000100name, the object retrieved by \samp{form[\var{key}]} is not a
101\class{FieldStorage} or \class{MiniFieldStorage}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000102instance but a list of such instances. If you expect this possibility
103(i.e., when your HTML form comtains multiple fields with the same
Fred Drake6ef871c1998-03-12 06:52:05 +0000104name), use the \function{type()} function to determine whether you
105have a single instance or a list of instances. For example, here's
106code that concatenates any number of username fields, separated by
107commas:
Guido van Rossum470be141995-03-17 16:07:09 +0000108
Fred Drake19479911998-02-13 06:58:54 +0000109\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000110username = form["username"]
111if type(username) is type([]):
112 # Multiple username fields specified
113 usernames = ""
114 for item in username:
115 if usernames:
116 # Next item -- insert comma
117 usernames = usernames + "," + item.value
118 else:
119 # First item -- don't insert comma
120 usernames = item.value
121else:
122 # Single username field specified
123 usernames = username.value
Fred Drake19479911998-02-13 06:58:54 +0000124\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000125
126If a field represents an uploaded file, the value attribute reads the
127entire file in memory as a string. This may not be what you want.
128You can test for an uploaded file by testing either the filename
129attribute or the file attribute. You can then read the data at
130leasure from the file attribute:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000131
Fred Drake19479911998-02-13 06:58:54 +0000132\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000133fileitem = form["userfile"]
134if fileitem.file:
135 # It's an uploaded file; count lines
136 linecount = 0
137 while 1:
138 line = fileitem.file.readline()
139 if not line: break
140 linecount = linecount + 1
Fred Drake19479911998-02-13 06:58:54 +0000141\end{verbatim}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000142
Fred Drake6ef871c1998-03-12 06:52:05 +0000143The file upload draft standard entertains the possibility of uploading
144multiple files from one field (using a recursive
145\mimetype{multipart/*} encoding). When this occurs, the item will be
146a dictionary-like \class{FieldStorage} item. This can be determined
147by testing its \member{type} attribute, which should be
148\mimetype{multipart/form-data} (or perhaps another MIME type matching
149\mimetype{multipart/*}). It this case, it can be iterated over
150recursively just like the top-level form object.
151
152When a form is submitted in the ``old'' format (as the query string or
153as a single data part of type
154\mimetype{application/x-www-form-urlencoded}), the items will actually
155be instances of the class \class{MiniFieldStorage}. In this case, the
156list, file and filename attributes are always \code{None}.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000157
158
159\subsection{Old classes}
160
Fred Drake6ef871c1998-03-12 06:52:05 +0000161These classes, present in earlier versions of the \module{cgi} module,
162are still supported for backward compatibility. New applications
163should use the \class{FieldStorage} class.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000164
Fred Drake6ef871c1998-03-12 06:52:05 +0000165\class{SvFormContentDict} stores single value form content as
166dictionary; it assumes each field name occurs in the form only once.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000167
Fred Drake6ef871c1998-03-12 06:52:05 +0000168\class{FormContentDict} stores multiple value form content as a
169dictionary (the form items are lists of values). Useful if your form
170contains multiple fields with the same name.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000171
Fred Drake6ef871c1998-03-12 06:52:05 +0000172Other classes (\class{FormContent}, \class{InterpFormContentDict}) are
173present for backwards compatibility with really old applications only.
174If you still use these and would be inconvenienced when they
175disappeared from a next version of this module, drop me a note.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000176
177
178\subsection{Functions}
Fred Drake4b3f0311996-12-13 22:04:31 +0000179\nodename{Functions in cgi module}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000180
181These are useful if you want more control, or if you want to employ
182some of the algorithms implemented in this module in other
183circumstances.
184
Guido van Rossum81e479a1997-08-25 18:28:03 +0000185\begin{funcdesc}{parse}{fp}
Fred Drake6ef871c1998-03-12 06:52:05 +0000186Parse a query in the environment or from a file (default
187\code{sys.stdin}).
Guido van Rossuma29cc971996-07-30 18:22:07 +0000188\end{funcdesc}
189
Guido van Rossum81e479a1997-08-25 18:28:03 +0000190\begin{funcdesc}{parse_qs}{qs}
Fred Drake6ef871c1998-03-12 06:52:05 +0000191Parse a query string given as a string argument (data of type
192\mimetype{application/x-www-form-urlencoded}).
Guido van Rossuma29cc971996-07-30 18:22:07 +0000193\end{funcdesc}
194
Fred Drakecce10901998-03-17 06:33:25 +0000195\begin{funcdesc}{parse_multipart}{fp, pdict}
Fred Drake6ef871c1998-03-12 06:52:05 +0000196Parse input of type \mimetype{multipart/form-data} (for
197file uploads). Arguments are \var{fp} for the input file and
198\var{pdict} for the dictionary containing other parameters of
199\code{content-type} header
Guido van Rossuma29cc971996-07-30 18:22:07 +0000200
Fred Drake6ef871c1998-03-12 06:52:05 +0000201Returns a dictionary just like \function{parse_qs()} keys are the
202field names, each value is a list of values for that field. This is
203easy to use but not much good if you are expecting megabytes to be
204uploaded --- in that case, use the \class{FieldStorage} class instead
205which is much more flexible. Note that \code{content-type} is the
206raw, unparsed contents of the \code{content-type} header.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000207
Fred Drake6ef871c1998-03-12 06:52:05 +0000208Note that this does not parse nested multipart parts --- use
209\class{FieldStorage} for that.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000210\end{funcdesc}
211
Guido van Rossum81e479a1997-08-25 18:28:03 +0000212\begin{funcdesc}{parse_header}{string}
Fred Drake6ef871c1998-03-12 06:52:05 +0000213Parse a header like \code{content-type} into a main
Guido van Rossuma29cc971996-07-30 18:22:07 +0000214content-type and a dictionary of parameters.
215\end{funcdesc}
216
Guido van Rossum81e479a1997-08-25 18:28:03 +0000217\begin{funcdesc}{test}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000218Robust test CGI script, usable as main program.
219Writes minimal HTTP headers and formats all information provided to
220the script in HTML form.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000221\end{funcdesc}
222
Guido van Rossum81e479a1997-08-25 18:28:03 +0000223\begin{funcdesc}{print_environ}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000224Format the shell environment in HTML.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000225\end{funcdesc}
226
Guido van Rossum81e479a1997-08-25 18:28:03 +0000227\begin{funcdesc}{print_form}{form}
Fred Drake6ef871c1998-03-12 06:52:05 +0000228Format a form in HTML.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000229\end{funcdesc}
230
Guido van Rossum81e479a1997-08-25 18:28:03 +0000231\begin{funcdesc}{print_directory}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000232Format the current directory in HTML.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000233\end{funcdesc}
234
Guido van Rossum81e479a1997-08-25 18:28:03 +0000235\begin{funcdesc}{print_environ_usage}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000236Print a list of useful (used by CGI) environment variables in
Guido van Rossuma29cc971996-07-30 18:22:07 +0000237HTML.
238\end{funcdesc}
239
Fred Drakecce10901998-03-17 06:33:25 +0000240\begin{funcdesc}{escape}{s\optional{, quote}}
Fred Drake6ef871c1998-03-12 06:52:05 +0000241Convert the characters
242\character{\&}, \character{<} and \character{>} in string \var{s} to
243HTML-safe sequences. Use this if you need to display text that might
244contain such characters in HTML. If the optional flag \var{quote} is
245true, the double quote character (\character{"}) is also translated;
246this helps for inclusion in an HTML attribute value, e.g. in \code{<A
247HREF="...">}.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000248\end{funcdesc}
249
250
251\subsection{Caring about security}
252
253There's one important rule: if you invoke an external program (e.g.
Fred Drake6ef871c1998-03-12 06:52:05 +0000254via the \function{os.system()} or \function{os.popen()} functions),
255make very sure you don't pass arbitrary strings received from the
256client to the shell. This is a well-known security hole whereby
257clever hackers anywhere on the web can exploit a gullible CGI script
258to invoke arbitrary shell commands. Even parts of the URL or field
259names cannot be trusted, since the request doesn't have to come from
260your form!
Guido van Rossuma29cc971996-07-30 18:22:07 +0000261
262To be on the safe side, if you must pass a string gotten from a form
263to a shell command, you should make sure the string contains only
264alphanumeric characters, dashes, underscores, and periods.
265
266
267\subsection{Installing your CGI script on a Unix system}
268
269Read the documentation for your HTTP server and check with your local
270system administrator to find the directory where CGI scripts should be
Fred Drakea2e268a1997-12-09 03:28:42 +0000271installed; usually this is in a directory \file{cgi-bin} in the server tree.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000272
273Make sure that your script is readable and executable by ``others''; the
Fred Drake6ef871c1998-03-12 06:52:05 +0000274\UNIX{} file mode should be \code{0755} octal (use \samp{chmod 0755
275filename}). Make sure that the first line of the script contains
276\code{\#!} starting in column 1 followed by the pathname of the Python
277interpreter, for instance:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000278
Fred Drake19479911998-02-13 06:58:54 +0000279\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000280#!/usr/local/bin/python
Fred Drake19479911998-02-13 06:58:54 +0000281\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000282
Guido van Rossuma29cc971996-07-30 18:22:07 +0000283Make sure the Python interpreter exists and is executable by ``others''.
284
285Make sure that any files your script needs to read or write are
Fred Drake6ef871c1998-03-12 06:52:05 +0000286readable or writable, respectively, by ``others'' --- their mode
287should be \code{0644} for readable and \code{0666} for writable. This
288is because, for security reasons, the HTTP server executes your script
289as user ``nobody'', without any special privileges. It can only read
290(write, execute) files that everybody can read (write, execute). The
291current directory at execution time is also different (it is usually
292the server's cgi-bin directory) and the set of environment variables
293is also different from what you get at login. In particular, don't
294count on the shell's search path for executables (\envvar{PATH}) or
295the Python module search path (\envvar{PYTHONPATH}) to be set to
296anything interesting.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000297
298If you need to load modules from a directory which is not on Python's
299default module search path, you can change the path in your script,
300before importing other modules, e.g.:
301
Fred Drake19479911998-02-13 06:58:54 +0000302\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000303import sys
304sys.path.insert(0, "/usr/home/joe/lib/python")
305sys.path.insert(0, "/usr/local/lib/python")
Fred Drake19479911998-02-13 06:58:54 +0000306\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000307
Guido van Rossuma29cc971996-07-30 18:22:07 +0000308(This way, the directory inserted last will be searched first!)
309
Fred Drakeefc1e0f1998-01-13 19:00:33 +0000310Instructions for non-\UNIX{} systems will vary; check your HTTP server's
Guido van Rossuma29cc971996-07-30 18:22:07 +0000311documentation (it will usually have a section on CGI scripts).
312
313
314\subsection{Testing your CGI script}
315
316Unfortunately, a CGI script will generally not run when you try it
317from the command line, and a script that works perfectly from the
318command line may fail mysteriously when run from the server. There's
319one reason why you should still test your script from the command
Fred Drake6a79be81998-04-03 03:47:03 +0000320line: if it contains a syntax error, the Python interpreter won't
Guido van Rossuma29cc971996-07-30 18:22:07 +0000321execute it at all, and the HTTP server will most likely send a cryptic
322error to the client.
323
324Assuming your script has no syntax errors, yet it does not work, you
Fred Drake6ef871c1998-03-12 06:52:05 +0000325have no choice but to read the next section.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000326
327
328\subsection{Debugging CGI scripts}
329
Fred Drake6ef871c1998-03-12 06:52:05 +0000330First of all, check for trivial installation errors --- reading the
Guido van Rossuma29cc971996-07-30 18:22:07 +0000331section above on installing your CGI script carefully can save you a
332lot of time. If you wonder whether you have understood the
333installation procedure correctly, try installing a copy of this module
Fred Drakea2e268a1997-12-09 03:28:42 +0000334file (\file{cgi.py}) as a CGI script. When invoked as a script, the file
Guido van Rossuma29cc971996-07-30 18:22:07 +0000335will dump its environment and the contents of the form in HTML form.
336Give it the right mode etc, and send it a request. If it's installed
Fred Drakea2e268a1997-12-09 03:28:42 +0000337in the standard \file{cgi-bin} directory, it should be possible to send it a
Guido van Rossuma29cc971996-07-30 18:22:07 +0000338request by entering a URL into your browser of the form:
339
Fred Drake19479911998-02-13 06:58:54 +0000340\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000341http://yourhostname/cgi-bin/cgi.py?name=Joe+Blow&addr=At+Home
Fred Drake19479911998-02-13 06:58:54 +0000342\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000343
Guido van Rossuma29cc971996-07-30 18:22:07 +0000344If this gives an error of type 404, the server cannot find the script
345-- perhaps you need to install it in a different directory. If it
346gives another error (e.g. 500), there's an installation problem that
347you should fix before trying to go any further. If you get a nicely
348formatted listing of the environment and form content (in this
349example, the fields should be listed as ``addr'' with value ``At Home''
Fred Drakea2e268a1997-12-09 03:28:42 +0000350and ``name'' with value ``Joe Blow''), the \file{cgi.py} script has been
Guido van Rossuma29cc971996-07-30 18:22:07 +0000351installed correctly. If you follow the same procedure for your own
352script, you should now be able to debug it.
353
Fred Drake6ef871c1998-03-12 06:52:05 +0000354The next step could be to call the \module{cgi} module's
355\function{test()} function from your script: replace its main code
356with the single statement
Guido van Rossuma29cc971996-07-30 18:22:07 +0000357
Fred Drake19479911998-02-13 06:58:54 +0000358\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000359cgi.test()
Fred Drake19479911998-02-13 06:58:54 +0000360\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000361
Guido van Rossuma29cc971996-07-30 18:22:07 +0000362This should produce the same results as those gotten from installing
Fred Drakea2e268a1997-12-09 03:28:42 +0000363the \file{cgi.py} file itself.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000364
365When an ordinary Python script raises an unhandled exception
366(e.g. because of a typo in a module name, a file that can't be opened,
367etc.), the Python interpreter prints a nice traceback and exits.
368While the Python interpreter will still do this when your CGI script
369raises an exception, most likely the traceback will end up in one of
370the HTTP server's log file, or be discarded altogether.
371
372Fortunately, once you have managed to get your script to execute
Fred Drake6ef871c1998-03-12 06:52:05 +0000373\emph{some} code, it is easy to catch exceptions and cause a traceback
374to be printed. The \function{test()} function below in this module is
375an example. Here are the rules:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000376
377\begin{enumerate}
Fred Drake6ef871c1998-03-12 06:52:05 +0000378\item Import the traceback module before entering the \keyword{try}
379 ... \keyword{except} statement
380
381\item Assign \code{sys.stderr} to be \code{sys.stdout}
382
383\item Make sure you finish printing the headers and the blank line
384 early
385
386\item Wrap all remaining code in a \keyword{try} ... \keyword{except}
387 statement
388
389\item In the except clause, call \function{traceback.print_exc()}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000390\end{enumerate}
391
392For example:
393
Fred Drake19479911998-02-13 06:58:54 +0000394\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000395import sys
396import traceback
397print "Content-type: text/html"
398print
399sys.stderr = sys.stdout
400try:
401 ...your code here...
402except:
403 print "\n\n<PRE>"
404 traceback.print_exc()
Fred Drake19479911998-02-13 06:58:54 +0000405\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000406
407Notes: The assignment to \code{sys.stderr} is needed because the
408traceback prints to \code{sys.stderr}.
Guido van Rossum9d62e801997-11-25 00:35:44 +0000409The \code{print "{\e}n{\e}n<PRE>"} statement is necessary to
Guido van Rossuma29cc971996-07-30 18:22:07 +0000410disable the word wrapping in HTML.
411
412If you suspect that there may be a problem in importing the traceback
413module, you can use an even more robust approach (which only uses
414built-in modules):
415
Fred Drake19479911998-02-13 06:58:54 +0000416\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000417import sys
418sys.stderr = sys.stdout
419print "Content-type: text/plain"
420print
421...your code here...
Fred Drake19479911998-02-13 06:58:54 +0000422\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000423
Guido van Rossuma29cc971996-07-30 18:22:07 +0000424This relies on the Python interpreter to print the traceback. The
425content type of the output is set to plain text, which disables all
426HTML processing. If your script works, the raw HTML will be displayed
427by your client. If it raises an exception, most likely after the
428first two lines have been printed, a traceback will be displayed.
429Because no HTML interpretation is going on, the traceback will
430readable.
431
432
433\subsection{Common problems and solutions}
Guido van Rossum470be141995-03-17 16:07:09 +0000434
435\begin{itemize}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000436\item Most HTTP servers buffer the output from CGI scripts until the
437script is completed. This means that it is not possible to display a
438progress report on the client's display while the script is running.
439
440\item Check the installation instructions above.
441
Fred Drake6ef871c1998-03-12 06:52:05 +0000442\item Check the HTTP server's log files. (\samp{tail -f logfile} in a
443separate window may be useful!)
Guido van Rossuma29cc971996-07-30 18:22:07 +0000444
445\item Always check a script for syntax errors first, by doing something
Fred Drake6ef871c1998-03-12 06:52:05 +0000446like \samp{python script.py}.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000447
448\item When using any of the debugging techniques, don't forget to add
Fred Drake6ef871c1998-03-12 06:52:05 +0000449\samp{import sys} to the top of the script.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000450
451\item When invoking external programs, make sure they can be found.
Fred Drake6ef871c1998-03-12 06:52:05 +0000452Usually, this means using absolute path names --- \envvar{PATH} is
453usually not set to a very useful value in a CGI script.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000454
455\item When reading or writing external files, make sure they can be read
456or written by every user on the system.
457
458\item Don't try to give a CGI script a set-uid mode. This doesn't work on
459most systems, and is a security liability as well.
Guido van Rossum470be141995-03-17 16:07:09 +0000460\end{itemize}
461