[PHP] User Authentication against remote authentication server

2001-10-29 Thread Zhu George-CZZ010


   sorry, this might be a little bit off the topic, but I really hope you could help 
anwering this question.

   It's pretty clear how to use web server to authenticate the users/groups, for 
example, if we are using Apache, the userID and password will be stored in the 
browser's cache, and be sent  to the web server to do the authentiation whenenver a 
page is requested.

   However, if the authentication server is not the web server, instead, it is a 
remote independent server. How can we manage the user authentications at the web 
server side?

   Thank you very much in advance!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] User Authentication against remote authentication server

2001-10-29 Thread Frewuill Rodriguez

may be you can write a  script (perl/php/*) which try to check/log/whatever
on the remote user sending a login/password, so if it returns ok yo can use
it to deny/allow the access to your local webserver.. it's like a kind of
authentication proxy



- Original Message -
From: Zhu George-CZZ010 [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, October 29, 2001 4:39 PM
Subject: [PHP] User Authentication against remote authentication server



sorry, this might be a little bit off the topic, but I really hope you
could help anwering this question.

It's pretty clear how to use web server to authenticate the
users/groups, for example, if we are using Apache, the userID and password
will be stored in the browser's cache, and be sent  to the web server to do
the authentiation whenenver a page is requested.

However, if the authentication server is not the web server, instead,
it is a remote independent server. How can we manage the user
authentications at the web server side?

Thank you very much in advance!

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] User Authentication against remote authentication server

2001-10-29 Thread Kurt Lieber

 However, if the authentication server is not the web server, instead,
 it is a remote independent server. How can we manage the user
 authentications at the web server side?

Use LDAP.  

http://www.php.net/manual/en/ref.ldap.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] User Authentication against remote authentication server [ LDAP ]

2001-10-29 Thread Johnson, Kirk

Thanks for the link, Kurt. Can you also point to any authentication code
examples, or further discussion? The user comments in the manual suggest
there are at least a couple ways to code stuff, ldap_compare vs ldap_bind.
Any additional help appreciated.

TIA

Kirk

 -Original Message-
 From: Kurt Lieber [mailto:[EMAIL PROTECTED]]
 Sent: Monday, October 29, 2001 3:58 PM
 To: PHP General List
 Subject: Re: [PHP] User Authentication against remote authentication
 server [ LDAP ]
 
 
  However, if the authentication server is not the web 
 server, instead,
  it is a remote independent server. How can we manage the user
  authentications at the web server side?
 
 Use LDAP.  
 
 http://www.php.net/manual/en/ref.ldap.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]