Re: [PHP] Handle NTLM Logins with PHP

2004-02-19 Thread Stuart
[EMAIL PROTECTED] wrote:
Is it possible to Handle logins via NTLM with PHP?
Yes, but it would be quite involved and not really worth doing.

I can't find anything about this at google :(
Are you using Apache? If yes, a good starting point would be...

http://twiki.org/cgi-bin/view/Codev.WindowsInstallModNTLM

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


RE: [PHP] Handle NTLM Logins with PHP

2004-02-19 Thread Korn.Christopher
 [EMAIL PROTECTED] wrote:
  Is it possible to Handle logins via NTLM with PHP?
 
 Yes, but it would be quite involved and not really worth doing.

  I can't find anything about this at google :(
 
 Are you using Apache? If yes, a good starting point would be...
 
 http://twiki.org/cgi-bin/view/Codev.WindowsInstallModNTLM

Mhm. Thanks i think i'll try this. 
But I doubt only this is enought for me. 

Is there a way of running a script after trying this login procedure?

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



Re: [PHP] Handle NTLM Logins with PHP

2004-02-19 Thread Stuart
[EMAIL PROTECTED] wrote:
Mhm. Thanks i think i'll try this. 
But I doubt only this is enought for me. 

Is there a way of running a script after trying this login procedure?
mod_ntlm will handle all the authentication for you transparently. By 
the time Apache gets to executing your script you are assured that the 
user has authenticated and you can get their username from the 
$_SERVER['REMOTE_USER'] variable.

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