1) http://perl.apache.org/guide/security.html#Authentication_code_snippets
2) http://perl.apache.org/guide/snippets.html#Handling_cookies
3) http://perl.apache.org/guide/porting.html#Using_Apache_StatINC_for_Develo
HTH
--Geoff
> -----Original Message-----
> From: raptor [SMTP:[EMAIL PROTECTED]]
> Sent: Wednesday, November 24, 1999 5:54 PM
> To: [EMAIL PROTECTED]
> Subject: Questions
>
> Hi,
> a couple of questions.
> I can't get the $ENV{REMOTE_USER} var., after succesfull
> authentification - there is nothing in it.
> Here is the configuration :
>
> <VirtualHost 127.0.0.1>
> ...blah ....
> .....blah ...
> <Directory /work/volunteer/members>
> AuthDBUserFile /work/.volunteers.db
> AuthGroupFile /dev/null
> AuthName 'Volunteers Members Area'
> AuthType Basic
> <Limit GET>
> require valid-user
> </Limit>
> </Directory>
> </VirtualHost>
>
> also if I dump the %ENV, like this :
> map {print "$_ : $ENV{$_}\n"} sort keys %ENV;
> it is not there ?!? What can be the reason ??
>
> Second question :
> How can set/get cookies within sub handler{}.
> Also in plain .cgi/.pl file w/o using mod_perl,CGI,ASP or whatever, I
> want
> to do it manualy. Pointer, sample !
>
> Third question :
> Is there a way to tell Apache to reparse a handler, when I change the
> source.
> Not to "/etc/rc.d/init.d/httpd restart" - every time.
>
> This is for now :")
> Thanx
> =====
> iVAN
> [EMAIL PROTECTED]
> =====