Re: Apache & mod_python: I don't receive anything with POST method

2008-11-27 Thread tengounplanb
On 27 nov, 15:13, [EMAIL PROTECTED] wrote: > On 26 nov, 23:22, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > > > > > On Nov 27, 12:21 am, [EMAIL PROTECTED] wrote: > > > > Hi, > > > > I'm using a simple form to make possible the users of our site upload > > > files. > > > > > > >     > > >     >

Re: Apache & mod_python: I don't receive anything with POST method

2008-11-27 Thread tengounplanb
On 26 nov, 23:22, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > On Nov 27, 12:21 am, [EMAIL PROTECTED] wrote: > > > > > Hi, > > > I'm using a simple form to make possible the users of our site upload > > files. > > > > >     > >     > >     > >         > >         > >     > >     > > > > >

Re: Apache & mod_python: I don't receive anything with POST method

2008-11-26 Thread Graham Dumpleton
On Nov 27, 12:21 am, [EMAIL PROTECTED] wrote: > Hi, > > I'm using a simple form to make possible the users of our site upload > files. > > >     >     >     >         >         >     >     > > > The "upload.py" looks like this: > > from mod_python import apache, util; > > def index(req): >

Apache & mod_python: I don't receive anything with POST method

2008-11-26 Thread tengounplanb
Hi, I'm using a simple form to make possible the users of our site upload files. The "upload.py" looks like this: from mod_python import apache, util; def index(req): form = util.FieldStorage(req, keep_blank_values=1) try: # form is