Re: keeping client images private

2001-09-12 Thread Mark Maunder
I'm afraid I'm not familiar (although aware of) Mason, so I can't help you in that context. I wrote something similar a while ago. When a user uploads the image file it goes into a common directory that contains all images. The file name is renamed to the following format: . The checksum ensures t

Re: keeping client images private

2001-09-12 Thread Dave Hodgkinson
will trillich <[EMAIL PROTECTED]> writes: > i'm sure there's more than one way to do this -- and before i > take the likely-to-be-most-circuituitous route, i thought i'd > cull advice from the clever minds on this list... Take a look at the mod_rewrite cookbook...there's some neat stuff in there

Error using mod perl

2001-09-12 Thread Flavio D' Amore
Hi I've succeeded builded, tested and installed the following modules: DBI-version 1.13 DBD-Oracle version 1.06 Apache::DBI version 0.87 Im using Oracle8i (8.1.7.0.0) DB. But at the moment in which i try to use my perl script i receive in error_log the following message: Can't call method "prepa

Re: AxKit & Last-Modified header

2001-09-12 Thread J. Zobel
On Mon, 2001-09-10 at 16:19, Brian Wheeler wrote: > The only difference between the two (request-wise) is that static pages > return a "Last-Modified" header and dynamic data doesn't. It seems to > me that if I drop that header, everything will work :) > > I've tried doing: > > $r->header_out(

Re: AxKit & Last-Modified header

2001-09-12 Thread Brian Wheeler
On Wed, 2001-09-12 at 19:34, J. Zobel wrote: > On Mon, 2001-09-10 at 16:19, Brian Wheeler wrote: > > > The only difference between the two (request-wise) is that static pages > > return a "Last-Modified" header and dynamic data doesn't. It seems to > > me that if I drop that header, everything w

Pre-announce Apache::ConfigParser

2001-09-12 Thread Blair Zajac
Hello, This is a preannounce of Apache::ConfigParser. I wrote this to allow programs separate from Apache to completely understand, parse and manipulate Apache configuration files. The interface is not simple, but it allows for more complicated understanding of log files, such as finding the as

Re: AxKit & Last-Modified header

2001-09-12 Thread Brian Wheeler
On Wed, 2001-09-12 at 19:34, J. Zobel wrote: > On Mon, 2001-09-10 at 16:19, Brian Wheeler wrote: > > > The only difference between the two (request-wise) is that static pages > > return a "Last-Modified" header and dynamic data doesn't. It seems to > > me that if I drop that header, everything w

Segmentation Fault problems

2001-09-12 Thread Brian Cocks
I posted this earlier and have received no replies. Am I missing crucial information? - I've been getting this error... [Thu Aug 30 17:32:54 2001] [notice] child pid 24891 exit signal Segmentation Fault (11) on just about any request. Not consistently though. I ran A

RE: Pre-announce Apache::ConfigParser

2001-09-12 Thread Geoffrey Young
>-Original Message- >From: Blair Zajac >To: [EMAIL PROTECTED] >Sent: 9/12/01 5:41 PM >Subject: Pre-announce Apache::ConfigParser > >Hello, > >This is a preannounce of Apache::ConfigParser. I wrote this to >allow programs separate from Apache to completely understand, >parse and manipul

Re: Pre-announce Apache::ConfigParser

2001-09-12 Thread Blair Zajac
I missed the Apache-Admin-Config module in my search for Apache config file parsers, otherwise I would have not written a new one :) The other parser was just announced after I finished this one is named Apache::ConfigFile. All three modules appear to treat the directives and contexts the same,

RE: Pre-announce Apache::ConfigParser

2001-09-12 Thread Geoffrey Young
I'll let the other module authors answer your API questions - I was merely starting the dialogue :) >Is it possible to remove CPAN modules when a common interface is built? yes, PAUSE has a delete interface, which removes them from the various CPAN mirrors. there is also an archive project goi

DBI connections build up..

2001-09-12 Thread DJ \(David J Radunz\)
Greetings,       I am having a problem with a module im writing connecting to the database everytime its run, and not cleaning up the database connection when its finished. I have tried the 2 scenarios below and as yet i cannot work out how to stop the connections building up and eventually

Re: DBI connections build up..

2001-09-12 Thread Jeff Beard
On Thu, 13 Sep 2001, DJ (David J Radunz) wrote: > use strict; > use vars ($dbh); You don't need this with Apache::DBI. Globals in general should be avoided/used with extreme caution. > use mod_perl; Don't need this either. > 1; > END { > $dbh->disconnect; > } Put this before the '1;'