Re: HTTP authentication

From: "Adam Lang" <aalang(at)rutgersinsurance(dot)com>
To: "PgSQL-PHP" <pgsql-php(at)postgresql(dot)org>
Subject: Re: HTTP authentication
Date: 2001-04-27 19:26:25
Message-ID: 007e01c0cf4f$f30793e0$330a0a0a@rutgersinsurance.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

You are correct. I was keeping it simple since his original question was
merely on the "logout" button.

Adam Lang
Systems Engineer
Rutgers Casualty Insurance Company
http://www.rutgersinsurance.com
----- Original Message -----
From: "Jason k Larson" <jlarson(at)harrison(dot)org>
To: "PgSQL-PHP" <pgsql-php(at)postgresql(dot)org>
Sent: Friday, April 27, 2001 2:46 PM
Subject: Re: [PHP] HTTP authentication

> This is all good but needs to be dealing with the password as a
> hash/digest not the real clear text password. I would use SHA1
> (SHA-160) or MD5.
>
> Jason k Larson
> Web Developer++
>
>
> AL> The way i do it is have a separate table in the database that keeps
track of
> AL> users and passwords for the application.
>
> AL> I use the WWW-Authenticate header to get $PHP_AUTH_USER and
$PHP_AUTH_PW
>
> AL> I run them through the table using a select query. If I come back
with a
> AL> match, I set a variable, $auth, equal to true.
>
> AL> If $auth is equal to true, they can perform whatever functions in the
page I
> AL> have.
>
> AL> I don't have a log out button, but all I would probably do would be
set
> AL> $auth = false and unset the $PHP... variables.
>
> AL> Adam Lang
> AL> Systems Engineer
> AL> Rutgers Casualty Insurance Company
> AL> http://www.rutgersinsurance.com
> AL> ----- Original Message -----
> AL> From: "Christian Marschalek" <cm(at)chello(dot)at>
> AL> To: "'Adam Lang'" <aalang(at)rutgersinsurance(dot)com>
> AL> Cc: "[PHP] PostgreSQL" <pgsql-php(at)postgresql(dot)org>
> AL> Sent: Friday, April 27, 2001 11:43 AM
> AL> Subject: RE: [PHP] HTTP authentication
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly

In response to

Responses

Browse pgsql-php by date

  From Date Subject
Next Message Christian Marschalek 2001-04-27 20:54:21 RE: HTTP authentication
Previous Message Jason k Larson 2001-04-27 18:46:13 Re: HTTP authentication