Beginner Authentication Tutorial Question.
From: Christopher Richards (crNOTANYSPAM_at_christopherNOSPAMrichards.com)
Date: 02/19/05
- Next message: redbull: "Postioning different file requires"
- Previous message: Andy Hassall: "Re: Check for old files?"
- Next in thread: Dave Patton: "Re: Beginner Authentication Tutorial Question."
- Reply: Dave Patton: "Re: Beginner Authentication Tutorial Question."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Sat, 19 Feb 2005 20:55:59 GMT
Why isn't this working? I copied this from
http://www.zend.com/zend/tut/authentication.php
So if both $PHP_AUTH_USER and $PHP_AUTH_PW are not set then I should get the
Authorization Required message (which I do) but putting anything into the
authentication box should set these global variables (if I understand
correctly) then why, when I type anything into the authentication fields am
I never getting the success message?Thanks.
<?php
if((!isset($PHP_AUTH_USER)) || (!isset($PHP_AUTH_PW))){
header( 'WWW-Authenticate: Basic realm="Private"');
header( 'HTTP/1.0 401 Unauthorized' );
echo 'Authorization Required.';
exit;
}else{
echo "success";
}
?>
- Next message: redbull: "Postioning different file requires"
- Previous message: Andy Hassall: "Re: Check for old files?"
- Next in thread: Dave Patton: "Re: Beginner Authentication Tutorial Question."
- Reply: Dave Patton: "Re: Beginner Authentication Tutorial Question."
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]