Re: log-in/out w/o cookies

2002-04-19 Thread Teresa Raymond
You're right, I didn't test before I posted. >"Teresa Raymond" <[EMAIL PROTECTED]> wrote in message >news:p05100301b8de2cf961a1@[67.36.181.234]... >> What I've done is: >> >> 1) have login page w/ hidden input name="formname" w/ some value leads to >> 2) cgi prog that cks that formname eq "som

Re: log-in/out w/o cookies

2002-04-14 Thread Todd Wade
"Teresa Raymond" <[EMAIL PROTECTED]> wrote in message news:p05100301b8de2cf961a1@[67.36.181.234]... > What I've done is: > > 1) have login page w/ hidden input name="formname" w/ some value leads to > 2) cgi prog that cks that formname eq "some value" and the username & > password1 and password2

Re: log-in/out w/o cookies

2002-04-13 Thread Teresa Raymond
What I've done is: 1) have login page w/ hidden input name="formname" w/ some value leads to 2) cgi prog that cks that formname eq "some value" and the username & password1 and password2 first exists: *unless ($informname eq "some value" && (-e $inusername) && (-e $inpassword1) && (-e

Re: log-in/out w/o cookies

2002-04-08 Thread fliptop
Four Hewes wrote: > My criteria: > > I. Account structure I want: > unique user accounts > users are members of groups (a la Unix) > use of HTTP's ".passwd" is OK > > II. Platform I'd use: > OS: Win, Unix, or Linux > Server: Apache or IIS > Dev.: MacPerl5 > > III. Security of log-in: > secure

log-in/out w/o cookies

2002-04-08 Thread Four Hewes
Folks, A basic question about implementing user authentication by means of CGI (and Perl if recommended): I haven't found a script online or in a book that will do what I want (see below). HTTP Basic Authentication doesn't provide for explicit log-out. I'd rather not use cookies so users behi