Re: Counter triggered on download

2003-08-24 Thread zsdc
fliptop wrote: merrill - i'm a little late on this thread, and the other suggestions are valid, but here's one way to serve up files w/o using a direct link by taking advantage of CGI.pm's header() function: my $cgi = new CGI; print $cgi->header('application/pdf'); Actually, it's the same as just:

Re: Counter triggered on download

2003-08-24 Thread Camilo Gonzalez
This is the sort of stuff I was talking about. Modules are great but sometimes you just have to wrest back control. zsdc wrote: fliptop wrote: merrill - i'm a little late on this thread, and the other suggestions are valid, but here's one way to serve up files w/o using a direct link by taking