I took over maint of an app, and the former maintainer is no longer available.  

I was under the assumption that authentication was done through an LDAP. How do 
I find out which LDAP server is PHP/Apache using? It might be right in front of 
my face in the apache config or php.ini, but I can't seem to find it. I'm not 
sure what it'd be called in those config files. There is no htaccess or 
htpasswd files that I could find on the server. Below is the code that I 
believe does the authentication.  

if (!isset($_SERVER['PHP_AUTH_USER'])) {
                header('WWW-Authenticate: Basic realm="***"');          
                header('HTTP/1.0 401 Unauthorized');            
                echo 'Access denied';           
                exit; 
} 
else  


If anyone can point me right direction, that'd be great.   

Mike 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to