22/07/2008, 15:30
|
| | | Fecha de Ingreso: julio-2008 Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 16 años, 4 meses Puntos: 2 | |
Respuesta: Encriptacion Autentificacion de Usuario Haber si entendi, de no ser el caso te rogaria me corrigieras por favor:
<?php
if (!isset($PHP_AUTH_USER)) {
header('WWW-Authenticate: Basic realm="Acceso restringido"');
header('HTTP/1.0 401 Unauthorized');
echo 'Authorization Required.';
exit;
}
$fich = file("passwords.txt"); $fich_encriptado=md5("$fich");
$i=0; $validado=false;
while ($fich_encriptado[$i] && !$validado) {
$campo = explode("|",$fich_encriptado[$i]);
if (($PHP_AUTH_USER==$campo[0]) && ($PHP_AUTH_PW==chop($campo[1]))) $validado=true;
$i++;
}
if (!$validado) {
header('WWW-Authenticate: Basic realm="Acceso restringido"');
header('HTTP/1.0 401 Unauthorized');
echo 'Authorization Required.';
exit;
}
?>
Saludos cordiales, |