RE: [PHP] PHP & Active Directory?

2010-06-21 Thread David Stoltz
Lol – ok…I guess it’s comparable to “it’s the bomb”…. Thanks ;-) From: Nathan Nobbe [mailto:quickshif...@gmail.com] Sent: Monday, June 21, 2010 11:46 AM To: David Stoltz Cc: php-general@lists.php.net Subject: Re: [PHP] PHP & Active Directory? On Mon, Jun 21, 2010 at 9:42 AM, D

Re: [PHP] PHP & Active Directory?

2010-06-21 Thread Nathan Nobbe
On Mon, Jun 21, 2010 at 9:42 AM, David Stoltz wrote: > Awesome – thanks – BTW, what does “it’s the chronic” mean? > listen to some dr. dre or come visit me in denver, co :) -nathan

RE: [PHP] PHP & Active Directory?

2010-06-21 Thread David Stoltz
Awesome – thanks – BTW, what does “it’s the chronic” mean? From: Nathan Nobbe [mailto:quickshif...@gmail.com] Sent: Monday, June 21, 2010 11:27 AM To: David Stoltz Cc: php-general@lists.php.net Subject: Re: [PHP] PHP & Active Directory? On Mon, Jun 21, 2010 at 8:59 AM, David St

Re: [PHP] PHP & Active Directory?

2010-06-21 Thread Nathan Nobbe
On Mon, Jun 21, 2010 at 8:59 AM, David Stoltz wrote: > Folks, > > I'm trying to validate an email address which is entered in a form field > against our Active Directory. > > Does anyone have any "good" method of doing this? > try the adLDAP class - its the chronic http://adldap.sourceforge.net

Re: [PHP] PHP & Active Directory?

2010-06-21 Thread Ashley Sheridan
On Mon, 2010-06-21 at 10:59 -0400, David Stoltz wrote: > Folks, > > > > I'm trying to validate an email address which is entered in a form field > against our Active Directory. > > > > I'm using some PHP scripting supplied by http://phpad.sunyday.net/ but > it's not working, and the site d

[PHP] PHP & Active Directory?

2010-06-21 Thread David Stoltz
Folks, I'm trying to validate an email address which is entered in a form field against our Active Directory. I'm using some PHP scripting supplied by http://phpad.sunyday.net/ but it's not working, and the site doesn't seem to be supported anymore. Does anyone have any "good" method of

Re: [PHP] Active Directory LDAP Help

2009-10-06 Thread Tommy Pham
- Original Message > From: Devendra Jadhav > To: Yves Premel-Cabic > Cc: php-general@lists.php.net > Sent: Tue, October 6, 2009 6:18:13 AM > Subject: Re: [PHP] Active Directory LDAP Help > > The existing Infrastructure is ready. and now at this point of time t

Re: [PHP] Active Directory LDAP Help

2009-10-06 Thread Devendra Jadhav
The existing Infrastructure is ready. and now at this point of time this is difficult to switch to the Linux based. I love linux but helpless now ... There is not so much information available on php.net On Tue, Oct 6, 2009 at 6:15 PM, Yves Premel-Cabic wrote: > Why don't you use linux solutions

Re: [PHP] Active Directory LDAP Help

2009-10-06 Thread Yves Premel-Cabic
Why don't you use linux solutions like RedHat Directory Server or Mandriva Directory Server instead? (LDAP based too) These solutions are scalable, free & fully documented on the web, not like this shitty MS AD (but is there a non-shitty MS product :p) This is also much more easier to debugg...

[PHP] Active Directory LDAP Help

2009-10-06 Thread Devendra Jadhav
Hi All, I am new to LDAP. I want to create user on AD(Active Directory) I have written script to do same, but I am getting "Operations error" even I am successfully connected to AD and bounded with correct username, password. Also where will I get all attributes with its meanign... which attribute

Re: [PHP] Active Directory password change utility in PHP

2006-12-13 Thread Saqib Ali
Another reader on the usenet suggested the followng MS link, which seems pretty helpful: http://support.microsoft.com/kb/269190 saqib http://www.full-disk-encryption.net On 12/13/06, Saqib Ali <[EMAIL PROTECTED]> wrote: Another reader on the usenet suggested the followng MS link, which seems p

RE: [PHP] Active Directory password change utility in PHP

2006-12-07 Thread Vincent DUPONT
Thu 7/12/2006 18:45 To: php-general@lists.php.net Subject: [PHP] Active Directory password change utility in PHP Hello All, Last year I wrote a small ASP utility which allowed domain users to change their Active Directory password using a web site. The utility used ADSI (Active Directory Se

[PHP] Active Directory password change utility in PHP

2006-12-07 Thread Saqib Ali
Hello All, Last year I wrote a small ASP utility which allowed domain users to change their Active Directory password using a web site. The utility used ADSI (Active Directory Service Interfaces) so it was quite easy to implement. However now we would like to integrated this into our LAMP based

RE: [PHP] active directory and PHP

2006-08-18 Thread Chris W. Parker
Richard Lynch on Friday, August 18, 2006 9:47 AM said: > Active Directory is a bastardized LDAP with goofy idiosyncracies to > drive you crazy. And you're speaking from experience? > Never use AD myself. Oh wait, I guess not... :/ Chris. p.s. I'm just having

RE: [PHP] active directory and PHP

2006-08-18 Thread Richard Lynch
On Fri, August 18, 2006 3:42 pm, Chris W. Parker wrote: > Richard Lynch > on Friday, August 18, 2006 9:47 AM said: > >> Active Directory is a bastardized LDAP with goofy idiosyncracies to >> drive you crazy. > > And you're speaking from experience? No, from the umpte

Re: [PHP] active directory and PHP

2006-08-18 Thread Richard Lynch
Active Directory is a bastardized LDAP with goofy idiosyncracies to drive you crazy. If you Google for "Active Directory LDAP PHP" you should find solutions fairly easily... Or so I'm told... Never use AD myself. On Thu, August 17, 2006 5:14 am, Alain Roger wrote: > Hi, > > I'm new to PHP, so s

Re: [PHP] active directory and PHP

2006-08-17 Thread Michael B Allen
ldap_bind because those credentials are passed in clear text so a sniffer could collect passwords. At least use ldap_sasl_bind or do a TLS connection. 2) It's slow. Kerberos does not require communication between the web server and AD. With LDAP you would need to communicate with AD at least on

Re: [PHP] active directory and PHP

2006-08-17 Thread Michael B Allen
it requires communication with the DC whereas Kerberos does not. And it's insecure because you have to cache the users "credentials" in the user's session. -- Michael B Allen PHP Active Directory SSO http://www.ioplex.com/ On Thu, 17 Aug 2006 12:14:18 +0200 "Alain Roger&

Re: [PHP] active directory and PHP

2006-08-17 Thread Ray Hauge
a hack it's not SSO and doesn't scale because it requires > communication with the DC whereas Kerberos does not. And it's insecure > because you have to cache the users "credentials" in the user's session. > > -- > Michael B Allen > PHP Active Directory SSO

Re: [PHP] active directory and PHP

2006-08-17 Thread chris smith
On 8/17/06, Alain Roger <[EMAIL PROTECTED]> wrote: Hi, I'm new to PHP, so sorry if my question looks like stupid. I have a web application which use authorization and authentication process to log-in. I would like to know if it exists a way to synchronize the authentication with our Active Dire

[PHP] active directory and PHP

2006-08-17 Thread Alain Roger
Hi, I'm new to PHP, so sorry if my question looks like stupid. I have a web application which use authorization and authentication process to log-in. I would like to know if it exists a way to synchronize the authentication with our Active Directory domain ? Something like a single side-on. In

[PHP] Active Directory Authentification

2004-07-07 Thread Mike Tuller
I have been working on this all day, and am not getting this to work. I am creating an application where a user would authenticate against Active Directory. Yesterday I was able to get PHP to connect to the AD server and display entries using this script. // PHP script to connect to the Active

RE: [PHP] Active Directory

2002-03-04 Thread Kearns, Terry
arch 2002 2:39 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Active Directory > > > Hey All > > > Does anybody have any idea how to authenticate agains a > Active Directory Server with PHP ? And if sow : > -- How does it work > -- What do I need to install &g

[PHP] Active Directory

2002-03-01 Thread Sven Jacobs
Hey All Does anybody have any idea how to authenticate agains a Active Directory Server with PHP ? And if sow : -- How does it work -- What do I need to install -- Some sample code would be nice :-) Kind Regards Sven