Re: Apache::Upload problems (can't see upload info)

2005-05-02 Thread scott fagg
On Tue, 2005-05-03 at 11:47 +1000, scott fagg wrote: > I'm trying to get apache::upload working. Module loads fine, produces no > errors, but calls to 'upload' don't produce anything usable. For > example, this snippet of code : > > use Apache::Request; >

Apache::Upload problems (can't see upload info)

2005-05-02 Thread scott fagg
I'm trying to get apache::upload working. Module loads fine, produces no errors, but calls to 'upload' don't produce anything usable. For example, this snippet of code : use Apache::Request; use Apache::Upload; use Data::Dumper; $req = Apache::Request->new($r); $upload = $req->upload(); print D

RE: [mp2] how far off feature-freeze is mp2?

2004-09-16 Thread Scott Fagg
> -Original Message- > From: Matthew Darwin [mailto:[EMAIL PROTECTED] > Sent: Friday, September 17, 2004 2:00 PM > To: Scott Fagg > Cc: [EMAIL PROTECTED] > Subject: Re: [mp2] how far off feature-freeze is mp2? > > I'm using a > > later version

RE: [mp2] how far off feature-freeze is mp2?

2004-09-16 Thread Scott Fagg
> -Original Message- > From: Geoffrey Young [mailto:[EMAIL PROTECTED] > Sent: Friday, September 17, 2004 1:57 PM > To: Scott Fagg > Cc: Matthew Darwin; [EMAIL PROTECTED] > Subject: Re: [mp2] how far off feature-freeze is mp2? > > > >>Yes, it is a p

RE: [mp2] how far off feature-freeze is mp2?

2004-09-16 Thread Scott Fagg
> -Original Message- > From: Matthew Darwin [mailto:[EMAIL PROTECTED] > Sent: Friday, September 17, 2004 1:42 PM > To: Scott Fagg > Cc: [EMAIL PROTECTED] > Subject: Re: [mp2] how far off feature-freeze is mp2? > > > > Scott Fagg wrote: > > >

RE: [mp2] how far off feature-freeze is mp2?

2004-09-16 Thread Scott Fagg
> -Original Message- > From: Matthew Darwin [mailto:[EMAIL PROTECTED] > Sent: Friday, September 17, 2004 1:36 PM > To: Carl Brewer > Cc: [EMAIL PROTECTED] > Subject: Re: [mp2] how far off feature-freeze is mp2? > > I'm using mp2 production now. > > http://demo:[EMAIL PROTECTED] > > Serv

PerlSetVar's not showing up in $r->dir_config

2004-08-31 Thread Scott Fagg
I have lines like this in my .htaccess file : AuthName AD AuthType Arup::AuthCkLDAP PerlSetVar ADPath / PerlSetVar ADLoginScript /login.perl .. and i'm using AuthCookie.pm. It picks up on the 'AD' value for AuthName, but cannot see the PerlSetVar values. e.g i get this in my error logs : [erro

RE: handling multipart/form-data POSTed content in mod_perl 2.0

2004-08-30 Thread Scott Fagg
> -Original Message- > From: Markus Wichitill [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 31 August 2004 4:16 PM > To: Scott Fagg > Cc: > Subject: Re: handling multipart/form-data POSTed content in > mod_perl 2.0 > > Scott Fagg wrote: > > Can someo

handling multipart/form-data POSTed content in mod_perl 2.0

2004-08-30 Thread Scott Fagg
Can someone point me in the direction of a worked example of handling multipart/form-data POSTed content in mod_perl 2.0 ? Closest i've come is a sample bit of code that just dumps the contents, but not parses it and i haven't been able to find any modules that help in parsing. -- Report prob