in reply to Re: Re: Re: Calling script after htaccess authentification
in thread Calling script after htaccess authentification

though it does mean that I have to do downloads via a CGI script, instead of letting the web server handle the details.

It is less than satisfying to pass all of the content through a script. It just seems like extra overhead. Apache is optimized for shoveling pages to browsers. Putting the Perl script in the middle seems like extra overhead. Maybe this is just my old 8088 conservatism. Trying to eliminate all extra processes.

Claude

  • Comment on Re: Re: Re: Re: Calling script after htaccess authentification

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Calling script after htaccess authentification
by dws (Chancellor) on Jul 30, 2002 at 22:08 UTC
    It is less than satisfying to pass all of the content through a script. It just seems like extra overhead.

    It's extra overhead, but unless downloads are very frequent occurances, so what? The benefit you gain from this scheme is that you don't need to use two login schemes.