blob: 285c08f66e4b3518da420a141b21fab364ace3b9 [file] [log] [blame]
Fred Drake295da241998-08-10 19:42:37 +00001\section{\module{cgi} ---
2 Common Gateway Interface support.}
Fred Drakeb91e9341998-07-23 17:59:49 +00003\declaremodule{standard}{cgi}
4
Fred Drake295da241998-08-10 19:42:37 +00005\modulesynopsis{Common Gateway Interface support, used to interpret
6forms in server-side scripts.}
Fred Drakeb91e9341998-07-23 17:59:49 +00007
Guido van Rossuma12ef941995-02-27 17:53:25 +00008\indexii{WWW}{server}
9\indexii{CGI}{protocol}
10\indexii{HTTP}{protocol}
11\indexii{MIME}{headers}
12\index{URL}
13
Guido van Rossum86751151995-02-28 17:14:32 +000014
Fred Drake6a79be81998-04-03 03:47:03 +000015Support module for CGI (Common Gateway Interface) scripts.%
16\index{Common Gateway Interface}
Guido van Rossuma12ef941995-02-27 17:53:25 +000017
Guido van Rossuma29cc971996-07-30 18:22:07 +000018This module defines a number of utilities for use by CGI scripts
19written in Python.
Guido van Rossuma12ef941995-02-27 17:53:25 +000020
Guido van Rossuma29cc971996-07-30 18:22:07 +000021\subsection{Introduction}
Fred Drake12d9fc91998-04-14 17:19:54 +000022\nodename{cgi-intro}
Guido van Rossuma12ef941995-02-27 17:53:25 +000023
Guido van Rossuma29cc971996-07-30 18:22:07 +000024A CGI script is invoked by an HTTP server, usually to process user
Fred Drake637af131998-08-21 20:02:06 +000025input submitted through an HTML \code{<FORM>} or \code{<ISINDEX>} element.
Guido van Rossuma29cc971996-07-30 18:22:07 +000026
Fred Drakea2e268a1997-12-09 03:28:42 +000027Most often, CGI scripts live in the server's special \file{cgi-bin}
Guido van Rossuma29cc971996-07-30 18:22:07 +000028directory. The HTTP server places all sorts of information about the
29request (such as the client's hostname, the requested URL, the query
30string, and lots of other goodies) in the script's shell environment,
31executes the script, and sends the script's output back to the client.
32
33The script's input is connected to the client too, and sometimes the
34form data is read this way; at other times the form data is passed via
Fred Drake6ef871c1998-03-12 06:52:05 +000035the ``query string'' part of the URL. This module is intended
Guido van Rossuma29cc971996-07-30 18:22:07 +000036to take care of the different cases and provide a simpler interface to
37the Python script. It also provides a number of utilities that help
38in debugging scripts, and the latest addition is support for file
Fred Drake6ef871c1998-03-12 06:52:05 +000039uploads from a form (if your browser supports it --- Grail 0.3 and
Guido van Rossuma29cc971996-07-30 18:22:07 +000040Netscape 2.0 do).
41
42The output of a CGI script should consist of two sections, separated
43by a blank line. The first section contains a number of headers,
44telling the client what kind of data is following. Python code to
45generate a minimal header section looks like this:
Guido van Rossuma12ef941995-02-27 17:53:25 +000046
Fred Drake19479911998-02-13 06:58:54 +000047\begin{verbatim}
Moshe Zadkaa1a4b592000-08-25 21:47:56 +000048print "Content-Type: text/html" # HTML is following
Guido van Rossume47da0a1997-07-17 16:34:52 +000049print # blank line, end of headers
Fred Drake19479911998-02-13 06:58:54 +000050\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +000051
Guido van Rossuma29cc971996-07-30 18:22:07 +000052The second section is usually HTML, which allows the client software
53to display nicely formatted text with header, in-line images, etc.
54Here's Python code that prints a simple piece of HTML:
Guido van Rossum470be141995-03-17 16:07:09 +000055
Fred Drake19479911998-02-13 06:58:54 +000056\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +000057print "<TITLE>CGI script output</TITLE>"
58print "<H1>This is my first CGI script</H1>"
59print "Hello, world!"
Fred Drake19479911998-02-13 06:58:54 +000060\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +000061
Guido van Rossuma29cc971996-07-30 18:22:07 +000062\subsection{Using the cgi module}
63\nodename{Using the cgi module}
64
Fred Drake6ef871c1998-03-12 06:52:05 +000065Begin by writing \samp{import cgi}. Do not use \samp{from cgi import
66*} --- the module defines all sorts of names for its own use or for
67backward compatibility that you don't want in your namespace.
Guido van Rossuma29cc971996-07-30 18:22:07 +000068
Fred Drake6ef871c1998-03-12 06:52:05 +000069It's best to use the \class{FieldStorage} class. The other classes
70defined in this module are provided mostly for backward compatibility.
71Instantiate it exactly once, without arguments. This reads the form
72contents from standard input or the environment (depending on the
73value of various environment variables set according to the CGI
74standard). Since it may consume standard input, it should be
75instantiated only once.
Guido van Rossuma29cc971996-07-30 18:22:07 +000076
Moshe Zadkaa1a4b592000-08-25 21:47:56 +000077The \class{FieldStorage} instance can be indexed like a Python
78dictionary, and also supports the standard dictionary methods
79\function{has_key()} and \function{keys()}.
80Form fields containing empty strings are ignored
81and do not appear in the dictionary; to keep such values, provide
82the optional \samp{keep_blank_values} argument when creating the
83\class {FieldStorage} instance.
84
85For instance, the following code (which assumes that the
86\code{Content-Type} header and blank line have already been printed)
Fred Drake6ef871c1998-03-12 06:52:05 +000087checks that the fields \code{name} and \code{addr} are both set to a
88non-empty string:
Guido van Rossum470be141995-03-17 16:07:09 +000089
Fred Drake19479911998-02-13 06:58:54 +000090\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +000091form = cgi.FieldStorage()
92form_ok = 0
93if form.has_key("name") and form.has_key("addr"):
Moshe Zadkaa1a4b592000-08-25 21:47:56 +000094 form_ok = 1
Guido van Rossume47da0a1997-07-17 16:34:52 +000095if not form_ok:
96 print "<H1>Error</H1>"
97 print "Please fill in the name and addr fields."
98 return
Moshe Zadkaa1a4b592000-08-25 21:47:56 +000099print "<p>name:", form["name"].value
100print "<p>addr:", form["addr"].value
Guido van Rossume47da0a1997-07-17 16:34:52 +0000101...further form processing here...
Fred Drake19479911998-02-13 06:58:54 +0000102\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000103
104Here the fields, accessed through \samp{form[\var{key}]}, are
105themselves instances of \class{FieldStorage} (or
106\class{MiniFieldStorage}, depending on the form encoding).
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000107The \member{value} attribute of the instance yields the string value
108of the field. The \function{getvalue()} method returns this string value
109directly; it also accepts an optional second argument as a default to
110return if the requested key is not present.
Guido van Rossum470be141995-03-17 16:07:09 +0000111
Guido van Rossuma29cc971996-07-30 18:22:07 +0000112If the submitted form data contains more than one field with the same
Fred Drake6ef871c1998-03-12 06:52:05 +0000113name, the object retrieved by \samp{form[\var{key}]} is not a
114\class{FieldStorage} or \class{MiniFieldStorage}
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000115instance but a list of such instances. Similarly, in this situation,
116\samp{form.getvalue(\var{key})} would return a list of strings.
117If you expect this possibility
Thomas Woutersf8316632000-07-16 19:01:10 +0000118(i.e., when your HTML form contains multiple fields with the same
Fred Drake6ef871c1998-03-12 06:52:05 +0000119name), use the \function{type()} function to determine whether you
120have a single instance or a list of instances. For example, here's
121code that concatenates any number of username fields, separated by
122commas:
Guido van Rossum470be141995-03-17 16:07:09 +0000123
Fred Drake19479911998-02-13 06:58:54 +0000124\begin{verbatim}
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000125value = form.getvalue("username", "")
126if type(value) is type([]):
Guido van Rossume47da0a1997-07-17 16:34:52 +0000127 # Multiple username fields specified
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000128 usernames = ",".join(value)
Guido van Rossume47da0a1997-07-17 16:34:52 +0000129else:
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000130 # Single or no username field specified
131 usernames = value
Fred Drake19479911998-02-13 06:58:54 +0000132\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000133
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000134If a field represents an uploaded file, accessing the value via the
135\member{value} attribute or the \function{getvalue()} method reads the
Fred Drake6ef871c1998-03-12 06:52:05 +0000136entire file in memory as a string. This may not be what you want.
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000137You can test for an uploaded file by testing either the \member{filename}
138attribute or the \member{file} attribute. You can then read the data at
139leisure from the \member{file} attribute:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000140
Fred Drake19479911998-02-13 06:58:54 +0000141\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000142fileitem = form["userfile"]
143if fileitem.file:
144 # It's an uploaded file; count lines
145 linecount = 0
146 while 1:
147 line = fileitem.file.readline()
148 if not line: break
149 linecount = linecount + 1
Fred Drake19479911998-02-13 06:58:54 +0000150\end{verbatim}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000151
Fred Drake6ef871c1998-03-12 06:52:05 +0000152The file upload draft standard entertains the possibility of uploading
153multiple files from one field (using a recursive
154\mimetype{multipart/*} encoding). When this occurs, the item will be
155a dictionary-like \class{FieldStorage} item. This can be determined
156by testing its \member{type} attribute, which should be
157\mimetype{multipart/form-data} (or perhaps another MIME type matching
Fred Drake7eca8e51999-01-18 15:46:02 +0000158\mimetype{multipart/*}). In this case, it can be iterated over
Fred Drake6ef871c1998-03-12 06:52:05 +0000159recursively just like the top-level form object.
160
161When a form is submitted in the ``old'' format (as the query string or
162as a single data part of type
163\mimetype{application/x-www-form-urlencoded}), the items will actually
164be instances of the class \class{MiniFieldStorage}. In this case, the
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000165\member{list}, \member{file}, and \member{filename} attributes are
166always \code{None}.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000167
168
169\subsection{Old classes}
170
Fred Drake6ef871c1998-03-12 06:52:05 +0000171These classes, present in earlier versions of the \module{cgi} module,
172are still supported for backward compatibility. New applications
173should use the \class{FieldStorage} class.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000174
Fred Drake6ef871c1998-03-12 06:52:05 +0000175\class{SvFormContentDict} stores single value form content as
176dictionary; it assumes each field name occurs in the form only once.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000177
Fred Drake6ef871c1998-03-12 06:52:05 +0000178\class{FormContentDict} stores multiple value form content as a
179dictionary (the form items are lists of values). Useful if your form
180contains multiple fields with the same name.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000181
Fred Drake6ef871c1998-03-12 06:52:05 +0000182Other classes (\class{FormContent}, \class{InterpFormContentDict}) are
183present for backwards compatibility with really old applications only.
184If you still use these and would be inconvenienced when they
185disappeared from a next version of this module, drop me a note.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000186
187
188\subsection{Functions}
Fred Drake4b3f0311996-12-13 22:04:31 +0000189\nodename{Functions in cgi module}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000190
191These are useful if you want more control, or if you want to employ
192some of the algorithms implemented in this module in other
193circumstances.
194
Guido van Rossum81e479a1997-08-25 18:28:03 +0000195\begin{funcdesc}{parse}{fp}
Fred Drake6ef871c1998-03-12 06:52:05 +0000196Parse a query in the environment or from a file (default
197\code{sys.stdin}).
Guido van Rossuma29cc971996-07-30 18:22:07 +0000198\end{funcdesc}
199
Guido van Rossum66ab4e81999-06-10 03:11:41 +0000200\begin{funcdesc}{parse_qs}{qs\optional{, keep_blank_values, strict_parsing}}
Fred Drake6ef871c1998-03-12 06:52:05 +0000201Parse a query string given as a string argument (data of type
Guido van Rossum66ab4e81999-06-10 03:11:41 +0000202\mimetype{application/x-www-form-urlencoded}). Data are
203returned as a dictionary. The dictionary keys are the unique query
Fred Drake38e5d272000-04-03 20:13:55 +0000204variable names and the values are lists of values for each name.
Guido van Rossum66ab4e81999-06-10 03:11:41 +0000205
206The optional argument \var{keep_blank_values} is
207a flag indicating whether blank values in
208URL encoded queries should be treated as blank strings.
209A true value indicates that blanks should be retained as
210blank strings. The default false value indicates that
211blank values are to be ignored and treated as if they were
212not included.
213
214The optional argument \var{strict_parsing} is a flag indicating what
215to do with parsing errors. If false (the default), errors
216are silently ignored. If true, errors raise a ValueError
217exception.
218\end{funcdesc}
219
220\begin{funcdesc}{parse_qsl}{qs\optional{, keep_blank_values, strict_parsing}}
221Parse a query string given as a string argument (data of type
222\mimetype{application/x-www-form-urlencoded}). Data are
223returned as a list of name, value pairs.
224
225The optional argument \var{keep_blank_values} is
226a flag indicating whether blank values in
227URL encoded queries should be treated as blank strings.
228A true value indicates that blanks should be retained as
229blank strings. The default false value indicates that
230blank values are to be ignored and treated as if they were
231not included.
232
233The optional argument \var{strict_parsing} is a flag indicating what
234to do with parsing errors. If false (the default), errors
235are silently ignored. If true, errors raise a ValueError
236exception.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000237\end{funcdesc}
238
Fred Drakecce10901998-03-17 06:33:25 +0000239\begin{funcdesc}{parse_multipart}{fp, pdict}
Fred Drake6ef871c1998-03-12 06:52:05 +0000240Parse input of type \mimetype{multipart/form-data} (for
241file uploads). Arguments are \var{fp} for the input file and
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000242\var{pdict} for a dictionary containing other parameters in
243the \code{Content-Type} header.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000244
Fred Drake6ef871c1998-03-12 06:52:05 +0000245Returns a dictionary just like \function{parse_qs()} keys are the
246field names, each value is a list of values for that field. This is
247easy to use but not much good if you are expecting megabytes to be
248uploaded --- in that case, use the \class{FieldStorage} class instead
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000249which is much more flexible.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000250
Fred Drake6ef871c1998-03-12 06:52:05 +0000251Note that this does not parse nested multipart parts --- use
252\class{FieldStorage} for that.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000253\end{funcdesc}
254
Guido van Rossum81e479a1997-08-25 18:28:03 +0000255\begin{funcdesc}{parse_header}{string}
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000256Parse a MIME header (such as \code{Content-Type}) into a main
257value and a dictionary of parameters.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000258\end{funcdesc}
259
Guido van Rossum81e479a1997-08-25 18:28:03 +0000260\begin{funcdesc}{test}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000261Robust test CGI script, usable as main program.
262Writes minimal HTTP headers and formats all information provided to
263the script in HTML form.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000264\end{funcdesc}
265
Guido van Rossum81e479a1997-08-25 18:28:03 +0000266\begin{funcdesc}{print_environ}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000267Format the shell environment in HTML.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000268\end{funcdesc}
269
Guido van Rossum81e479a1997-08-25 18:28:03 +0000270\begin{funcdesc}{print_form}{form}
Fred Drake6ef871c1998-03-12 06:52:05 +0000271Format a form in HTML.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000272\end{funcdesc}
273
Guido van Rossum81e479a1997-08-25 18:28:03 +0000274\begin{funcdesc}{print_directory}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000275Format the current directory in HTML.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000276\end{funcdesc}
277
Guido van Rossum81e479a1997-08-25 18:28:03 +0000278\begin{funcdesc}{print_environ_usage}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000279Print a list of useful (used by CGI) environment variables in
Guido van Rossuma29cc971996-07-30 18:22:07 +0000280HTML.
281\end{funcdesc}
282
Fred Drakecce10901998-03-17 06:33:25 +0000283\begin{funcdesc}{escape}{s\optional{, quote}}
Fred Drake6ef871c1998-03-12 06:52:05 +0000284Convert the characters
285\character{\&}, \character{<} and \character{>} in string \var{s} to
286HTML-safe sequences. Use this if you need to display text that might
287contain such characters in HTML. If the optional flag \var{quote} is
288true, the double quote character (\character{"}) is also translated;
289this helps for inclusion in an HTML attribute value, e.g. in \code{<A
290HREF="...">}.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000291\end{funcdesc}
292
293
294\subsection{Caring about security}
295
296There's one important rule: if you invoke an external program (e.g.
Fred Drake6ef871c1998-03-12 06:52:05 +0000297via the \function{os.system()} or \function{os.popen()} functions),
298make very sure you don't pass arbitrary strings received from the
299client to the shell. This is a well-known security hole whereby
300clever hackers anywhere on the web can exploit a gullible CGI script
301to invoke arbitrary shell commands. Even parts of the URL or field
302names cannot be trusted, since the request doesn't have to come from
303your form!
Guido van Rossuma29cc971996-07-30 18:22:07 +0000304
305To be on the safe side, if you must pass a string gotten from a form
306to a shell command, you should make sure the string contains only
307alphanumeric characters, dashes, underscores, and periods.
308
309
310\subsection{Installing your CGI script on a Unix system}
311
312Read the documentation for your HTTP server and check with your local
313system administrator to find the directory where CGI scripts should be
Fred Drakea2e268a1997-12-09 03:28:42 +0000314installed; usually this is in a directory \file{cgi-bin} in the server tree.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000315
316Make sure that your script is readable and executable by ``others''; the
Fred Drake6ef871c1998-03-12 06:52:05 +0000317\UNIX{} file mode should be \code{0755} octal (use \samp{chmod 0755
Fred Drake7eca8e51999-01-18 15:46:02 +0000318\var{filename}}). Make sure that the first line of the script contains
Fred Drake6ef871c1998-03-12 06:52:05 +0000319\code{\#!} starting in column 1 followed by the pathname of the Python
320interpreter, for instance:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000321
Fred Drake19479911998-02-13 06:58:54 +0000322\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000323#!/usr/local/bin/python
Fred Drake19479911998-02-13 06:58:54 +0000324\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000325
Guido van Rossuma29cc971996-07-30 18:22:07 +0000326Make sure the Python interpreter exists and is executable by ``others''.
327
328Make sure that any files your script needs to read or write are
Fred Drake6ef871c1998-03-12 06:52:05 +0000329readable or writable, respectively, by ``others'' --- their mode
330should be \code{0644} for readable and \code{0666} for writable. This
331is because, for security reasons, the HTTP server executes your script
332as user ``nobody'', without any special privileges. It can only read
333(write, execute) files that everybody can read (write, execute). The
334current directory at execution time is also different (it is usually
335the server's cgi-bin directory) and the set of environment variables
336is also different from what you get at login. In particular, don't
337count on the shell's search path for executables (\envvar{PATH}) or
338the Python module search path (\envvar{PYTHONPATH}) to be set to
339anything interesting.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000340
341If you need to load modules from a directory which is not on Python's
342default module search path, you can change the path in your script,
343before importing other modules, e.g.:
344
Fred Drake19479911998-02-13 06:58:54 +0000345\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000346import sys
347sys.path.insert(0, "/usr/home/joe/lib/python")
348sys.path.insert(0, "/usr/local/lib/python")
Fred Drake19479911998-02-13 06:58:54 +0000349\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000350
Guido van Rossuma29cc971996-07-30 18:22:07 +0000351(This way, the directory inserted last will be searched first!)
352
Fred Drakeefc1e0f1998-01-13 19:00:33 +0000353Instructions for non-\UNIX{} systems will vary; check your HTTP server's
Guido van Rossuma29cc971996-07-30 18:22:07 +0000354documentation (it will usually have a section on CGI scripts).
355
356
357\subsection{Testing your CGI script}
358
359Unfortunately, a CGI script will generally not run when you try it
360from the command line, and a script that works perfectly from the
361command line may fail mysteriously when run from the server. There's
362one reason why you should still test your script from the command
Fred Drake6a79be81998-04-03 03:47:03 +0000363line: if it contains a syntax error, the Python interpreter won't
Guido van Rossuma29cc971996-07-30 18:22:07 +0000364execute it at all, and the HTTP server will most likely send a cryptic
365error to the client.
366
367Assuming your script has no syntax errors, yet it does not work, you
Fred Drake6ef871c1998-03-12 06:52:05 +0000368have no choice but to read the next section.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000369
370
371\subsection{Debugging CGI scripts}
372
Fred Drake6ef871c1998-03-12 06:52:05 +0000373First of all, check for trivial installation errors --- reading the
Guido van Rossuma29cc971996-07-30 18:22:07 +0000374section above on installing your CGI script carefully can save you a
375lot of time. If you wonder whether you have understood the
376installation procedure correctly, try installing a copy of this module
Fred Drakea2e268a1997-12-09 03:28:42 +0000377file (\file{cgi.py}) as a CGI script. When invoked as a script, the file
Guido van Rossuma29cc971996-07-30 18:22:07 +0000378will dump its environment and the contents of the form in HTML form.
379Give it the right mode etc, and send it a request. If it's installed
Fred Drakea2e268a1997-12-09 03:28:42 +0000380in the standard \file{cgi-bin} directory, it should be possible to send it a
Guido van Rossuma29cc971996-07-30 18:22:07 +0000381request by entering a URL into your browser of the form:
382
Fred Drake19479911998-02-13 06:58:54 +0000383\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000384http://yourhostname/cgi-bin/cgi.py?name=Joe+Blow&addr=At+Home
Fred Drake19479911998-02-13 06:58:54 +0000385\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000386
Guido van Rossuma29cc971996-07-30 18:22:07 +0000387If this gives an error of type 404, the server cannot find the script
388-- perhaps you need to install it in a different directory. If it
389gives another error (e.g. 500), there's an installation problem that
390you should fix before trying to go any further. If you get a nicely
391formatted listing of the environment and form content (in this
392example, the fields should be listed as ``addr'' with value ``At Home''
Fred Drakea2e268a1997-12-09 03:28:42 +0000393and ``name'' with value ``Joe Blow''), the \file{cgi.py} script has been
Guido van Rossuma29cc971996-07-30 18:22:07 +0000394installed correctly. If you follow the same procedure for your own
395script, you should now be able to debug it.
396
Fred Drake6ef871c1998-03-12 06:52:05 +0000397The next step could be to call the \module{cgi} module's
398\function{test()} function from your script: replace its main code
399with the single statement
Guido van Rossuma29cc971996-07-30 18:22:07 +0000400
Fred Drake19479911998-02-13 06:58:54 +0000401\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000402cgi.test()
Fred Drake19479911998-02-13 06:58:54 +0000403\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000404
Guido van Rossuma29cc971996-07-30 18:22:07 +0000405This should produce the same results as those gotten from installing
Fred Drakea2e268a1997-12-09 03:28:42 +0000406the \file{cgi.py} file itself.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000407
408When an ordinary Python script raises an unhandled exception
409(e.g. because of a typo in a module name, a file that can't be opened,
410etc.), the Python interpreter prints a nice traceback and exits.
411While the Python interpreter will still do this when your CGI script
412raises an exception, most likely the traceback will end up in one of
413the HTTP server's log file, or be discarded altogether.
414
415Fortunately, once you have managed to get your script to execute
Fred Drake6ef871c1998-03-12 06:52:05 +0000416\emph{some} code, it is easy to catch exceptions and cause a traceback
417to be printed. The \function{test()} function below in this module is
418an example. Here are the rules:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000419
420\begin{enumerate}
Fred Drake6ef871c1998-03-12 06:52:05 +0000421\item Import the traceback module before entering the \keyword{try}
422 ... \keyword{except} statement
423
424\item Assign \code{sys.stderr} to be \code{sys.stdout}
425
426\item Make sure you finish printing the headers and the blank line
427 early
428
429\item Wrap all remaining code in a \keyword{try} ... \keyword{except}
430 statement
431
432\item In the except clause, call \function{traceback.print_exc()}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000433\end{enumerate}
434
435For example:
436
Fred Drake19479911998-02-13 06:58:54 +0000437\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000438import sys
439import traceback
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000440print "Content-Type: text/html"
Guido van Rossume47da0a1997-07-17 16:34:52 +0000441print
442sys.stderr = sys.stdout
443try:
444 ...your code here...
445except:
446 print "\n\n<PRE>"
447 traceback.print_exc()
Fred Drake19479911998-02-13 06:58:54 +0000448\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000449
450Notes: The assignment to \code{sys.stderr} is needed because the
451traceback prints to \code{sys.stderr}.
Guido van Rossum9d62e801997-11-25 00:35:44 +0000452The \code{print "{\e}n{\e}n<PRE>"} statement is necessary to
Guido van Rossuma29cc971996-07-30 18:22:07 +0000453disable the word wrapping in HTML.
454
455If you suspect that there may be a problem in importing the traceback
456module, you can use an even more robust approach (which only uses
457built-in modules):
458
Fred Drake19479911998-02-13 06:58:54 +0000459\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000460import sys
461sys.stderr = sys.stdout
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000462print "Content-Type: text/plain"
Guido van Rossume47da0a1997-07-17 16:34:52 +0000463print
464...your code here...
Fred Drake19479911998-02-13 06:58:54 +0000465\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000466
Guido van Rossuma29cc971996-07-30 18:22:07 +0000467This relies on the Python interpreter to print the traceback. The
468content type of the output is set to plain text, which disables all
469HTML processing. If your script works, the raw HTML will be displayed
470by your client. If it raises an exception, most likely after the
471first two lines have been printed, a traceback will be displayed.
472Because no HTML interpretation is going on, the traceback will
473readable.
474
475
476\subsection{Common problems and solutions}
Guido van Rossum470be141995-03-17 16:07:09 +0000477
478\begin{itemize}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000479\item Most HTTP servers buffer the output from CGI scripts until the
480script is completed. This means that it is not possible to display a
481progress report on the client's display while the script is running.
482
483\item Check the installation instructions above.
484
Fred Drake6ef871c1998-03-12 06:52:05 +0000485\item Check the HTTP server's log files. (\samp{tail -f logfile} in a
486separate window may be useful!)
Guido van Rossuma29cc971996-07-30 18:22:07 +0000487
488\item Always check a script for syntax errors first, by doing something
Fred Drake6ef871c1998-03-12 06:52:05 +0000489like \samp{python script.py}.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000490
491\item When using any of the debugging techniques, don't forget to add
Fred Drake6ef871c1998-03-12 06:52:05 +0000492\samp{import sys} to the top of the script.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000493
494\item When invoking external programs, make sure they can be found.
Fred Drake6ef871c1998-03-12 06:52:05 +0000495Usually, this means using absolute path names --- \envvar{PATH} is
496usually not set to a very useful value in a CGI script.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000497
498\item When reading or writing external files, make sure they can be read
499or written by every user on the system.
500
501\item Don't try to give a CGI script a set-uid mode. This doesn't work on
502most systems, and is a security liability as well.
Guido van Rossum470be141995-03-17 16:07:09 +0000503\end{itemize}
504