Use php:
<?php
$user="username";
$passwd="password";

if($PHP_AUTH_USER!=$user || $PHP_AUTH_PW!=$passwd)

{  Header("WWW-Authenticate: Basic realm=\"directory\"");
        Header("HTTP/1.0 401 Unauthorized");
        echo "Sorry you are not authorised to view this page";
        exit;
}
?>         

"Michale C. Balines" wrote:
> 
> hi!
> does anyone know of any webbased password script? thanks!
> 
> mike
> 
> _______________________________________________
> Redhat-list mailing list
> [EMAIL PROTECTED]
> https://listman.redhat.com/mailman/listinfo/redhat-list



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to