Hi,
>
> The module send a cookie and it works for the first page, but not for the
> following pages. Whats wrong and how can I start sessions from an apache
> module?
>
SetSessionCookie will only send the Cookie, if it is a new cookie. If it
have received a cookie, there is normaly no need to sen
Hi,
I have a little problem with embperl and apache modules. I write an
apache-module, which starts a session with Embperl.
if ($radius->check_pwd($vars[1],$vars[2])) {
$udat = HTML::Embperl::Req::SetupSession($req_rec);
$udat->{username}="Test";
HTML::Embperl::Req::SetSessionCookie;
return OK;