[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] 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 doesn't

Re: [PHP] PHP Active Directory?

2010-06-21 Thread Nathan Nobbe
On Mon, Jun 21, 2010 at 8:59 AM, David Stoltz dsto...@shh.org 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

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 Stoltz dsto

Re: [PHP] PHP Active Directory?

2010-06-21 Thread Nathan Nobbe
On Mon, Jun 21, 2010 at 9:42 AM, David Stoltz dsto...@shh.org 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
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, David

[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 attributes

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...

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 xavier.pre...@eds.muwrote: Why don't you

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

[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 password change utility in PHP

2006-12-07 Thread Vincent DUPONT
/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 Service

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 sorry

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 mailto:[EMAIL PROTECTED] 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 umpteen

RE: [PHP] active directory and PHP

2006-08-18 Thread Chris W. Parker
Richard Lynch mailto:[EMAIL PROTECTED] 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

[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

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

Re: [PHP] active directory and PHP

2006-08-17 Thread Ray Hauge
. -- Michael B Allen PHP Active Directory SSO http://www.ioplex.com/ On Thu, 17 Aug 2006 12:14:18 +0200 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

Re: [PHP] active directory and PHP

2006-08-17 Thread Michael B Allen
being 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 http://www.ioplex.com/ On Thu, 17 Aug 2006 12

Re: [PHP] active directory and PHP

2006-08-17 Thread Michael B Allen
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 once for every new session. Otherwise, yeah it would work. Mike -- Michael B Allen PHP Active Directory SSO http://www.ioplex.com/ -- PHP General

[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

RE: [PHP] Active Directory

2002-03-04 Thread Kearns, Terry
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 -- Some sample code would be nice :-) Kind Regards Sven

[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