Brian Parker wrote:
> I'm trying to use Apache::Session::MySQL. Since I'm generating my own
> session key outside of Apache::Session (using $ENV{REMOTE_USER}), what
> method(s) do I have to override to prevent Apache::Session from trying
> to create a session key for me? Since I'm not using Apache::Session's
> key generation capability, is there another implementation that would be
> more appropriate for my application?
Just write a replacement for Apache::Session::Generate::MD5. You can
look at Apache::Session::Generate::ModUsertrack, which is probably very
close to what you want to do.
- Perrin