Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #35314 > unrolled thread

RE: Question regarding mod_python and a script for web.

Started byJohn Pennington <johnpen1@hotmail.com>
First post2012-12-21 11:21 -0800
Last post2012-12-21 11:21 -0800
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  RE: Question regarding mod_python and a script for web. John Pennington <johnpen1@hotmail.com> - 2012-12-21 11:21 -0800

#35314 — RE: Question regarding mod_python and a script for web.

FromJohn Pennington <johnpen1@hotmail.com>
Date2012-12-21 11:21 -0800
SubjectRE: Question regarding mod_python and a script for web.
Message-ID<mailman.1165.1356117739.29569.python-list@python.org>

[Multipart message — attachments visible in raw view] — view raw

Hi Ion thanks a bunch, for responding. The problem we seem to be running into is that  When we change the
forms to a post instead of a get I cannot pick up the post values using cgi:

 

page_info = cgi.FieldStorage()
is this a limitation of mod_python?
Thanks.
john
Date: Thu, 20 Dec 2012 17:59:42 -0800
Subject: Re: Question regarding mod_python and a script for web.
From: ian.douglas@iandouglas.com
To: johnpen1@hotmail.com
CC: python-list@python.org

Short answer: Use the POST method on the form instead of GET. Depending how you process the form you might need to make a few changes to the script that answers the request. 		 	   		  

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web