On Saturday 13 July 2002 08:34, Pavel Penchev wrote: > PerlModule AxKit > PerlModule Apache::AxKit::Plugin::Session > PerlSetVar AxKitSessionDir /tmp/sessions
Is this directory writeable for the httpd and does it exist? > <Location /> > AuthType Apache::AxKit::Plugin::Session > AuthName AxKitSession > PerlFixupHandler Apache::AxKit::Plugin::Session->recognize_user > </Location> recognize_user will not create a session record. For a simple scenario, if you just want session id's for everyone and no authentication, use the PerlAuthenHandler/PerlAuthzHandler combo described in the man page. (Yeah, I know, this is a bit confusing, but password queries are not enabled by that - they come into play if you also set *LoginScript or write your own -- documentation improvements very welcome) > Is it possible the problem to be something connectd with the virtual host > directive. Have I put something that should be outside it inside? I'm > missing something but I can't see it. Please give some advice. No, the location of directives is okay - PerlModule Apache::...::Session must be top-level or top-level within a vhost container, the rest may appear anywhere. CU J�rg --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
