Código PHP:
<?
if (!isset($PHP_AUTH_USER)) {
header('WWW-Authenticate: Basic realm="Acceso restringido"');
header('HTTP/1.0 401 Unauthorized');
echo 'Authorization Required.';
exit;
}
else {
echo "Ha introducido el nombre de usuario: $PHP_AUTH_USER<br>";
echo "Ha introducido la contraseña: $PHP_AUTH_PW<br>";
}
?>
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, admin@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Estoy corriendo Apache bajo windows, y varias personas ke lo corren tb en windows me han dicho ke a ellas si ke les va.
¿A que puede ser debido esto y como puedo solucionarlo?
He pensado que puede ke puede ke tenga ke ver la configuración del httpd.conf de apache, pero no estoy seguro.