WordPress, LDAP, and Playing Nicely
As I worked to set up WordPress as a CMS for the new ResTek web site (not live yet), it was decided that authenticating against LDAP would make everyone’s lives much easier. Not relishing the thought of creating the necessary code from scratch I went searching. I found Alistair Young’s LDAP Enabled WordPress and it did everything I needed. Life was good.
Unfortunately, WordPress 1.5 offered no method to override wp_login() and wp_setcookie() via a plugin. This meant that using LDAP required hacking core WordPress files. These changes would need to be applied each and every upgrade. Updating the information for the LDAP server and disabling or enabling the LDAP support was likewise clunky. It required editing the actual PHP and changing define() calls around. While this is all certainly doable for users with the requisite PHP skill, it wasn’t easy or particularly user-friendly.
With the release of WordPress 1.5.1 and the new pluggable-functions.php page certain functions can now be defined in plugins before the default definition is provided. I set out this evening to create a plugin that would take advantage of not only this new functionality but also provide a clean interface within the admin section for editing the details of the plugin. It took some experimenting to become comfortable with writing a WordPress plugin as it really isn’t something I’ve ever done before. But lo and behold, I got it all working. There’s some stuff I’d like to change about it that can wait until tomorrow, for now it works fine and it’s just duplicated functionality that doesn’t matter. I’m still trying to determine if there is a way to define CSS classes inline, as the admin interface has some seriously gross CSS that could be cleaned up an awful lot.
So here’s version 1.01 of my LDAP Authentication plugin for WordPress 1.5.1. Note that this will NOT WORK with any previous version of WordPress. Installation is pretty simple: download, unzip into wp-content/plugins, activate, go to the “LDAP Options” menu and set up your LDAP information. If I understood LDAP better I could have provided more descriptive text for each box, but my hold on the nomenclature and organization is tenuous at best. For now the descriptions are lifted directly from Alistair’s PHP comments.
Please, please recognize that Alistair’s original LDAP plugin did all of the heavy lifting for my version. I make no claim to having written any of the LDAP classes that come with this plugin. That being said, I will try and provide what help I can to anyone who has problems getting this to work. Please be aware that (as I stated above) my LDAP experience is virtually none, so my troubleshooting will be almost entirely PHP issues that may crop up.
LDAP Options
Download WordPress LDAP Authentication Plugin 1.01
Update:
I don’t have time to maintain this lately, especially as it’s still serving its desired function at ResTek. Lots of updates via the comments on this post and LDAP Authentication 1.01.
May 11th, 2005 79 Comments »





Hey, nice work! I didn’t really like having to hack the core files but you’ve sorted that.
I’ll put this page on my blog!
How can I get the new code? When I click on the link I get a page of adverts!
cheers,
Alistair
May 11th, 2005 at 2:22 am
I’m retarded and wasn’t paying attention to either my clipboard or my typing last night, completely forgot to double-check the links before posting. Fixed both of them now, sorry about that!
May 11th, 2005 at 7:44 am
I am 2 hours old with WordPress and LDAP Enabled WordPress. I got it working (authenticating) without problem.
I am somehow confused, because I will get this message:
You do not have sufficient permissions to access this page
whenever I tried to post as an ORDINARY ldap user.
I can post successfully with the admin account. That’s why I said I am confused. Isn’t this patch suppose to make WordPress multiuser so did I miss anything and confused myself.
Please advise soonest.
–
Roger
May 20th, 2005 at 1:40 am
s/so did I/or did I
–
Roger
May 20th, 2005 at 1:42 am
In order for LDAP authentication to work, the user must also have a WordPress account with proper permissions to post. You’ll need to setup accounts for each user using the same login name as they’d use for LDAP in the WordPress admin interface. The password doesn’t matter, as the authentication check is overridden by the plugin.
As a future improvement idea, allowing the plugin to create accounts w/ a specified user level would be neat. Once finals are over, that’d be interesting thing to work on.
May 20th, 2005 at 9:59 am
Thanks Tivac.
BTW, Pat, any chance you will implement your patch to mu.wordpress.org ?
May 24th, 2005 at 4:27 am
To be honest Roger, I don’t really know much about the WordPress MultiUser project. I’ve heard of it, but have no idea what it actually entails. I can certainly see how this plugin would be useful for it though. I’ll try and get into contact with them.
A little self-promotion never hurt anything, right?
May 24th, 2005 at 8:36 am
Plugin WordPress: LDAP Authentication
Il plugin LDAP Authentication per WordPress rende posibile l’autenticazione verso un LDAP.
[Traduzione da BloggingPro]
…
May 31st, 2005 at 2:57 am
Hi,
I’ve added a few extra lines to your code to allow non-default LDAP port numbers (other than 389) to be used for LDAP authentication. I would like to send you the 2 files that I’ve modified, so you can add it to the distribution. I am very impressed by the work you and Alistair have done to get LDAP integration into WordPress, but a lot of people run LDAP on other ports (sometimes many instances on several ports on the same machine), so this would be a nice extra.
I could not find your email address, how can I send the files to you?
Martin
June 27th, 2005 at 1:10 am
Well that’s a bit of an oversight on my part, isn’t it?
pcavit@gmail.com will do just fine. Thanks!
June 27th, 2005 at 8:46 am
I’ve just sent the files to you that I’ve modified.
Cheers,
Martin
June 28th, 2005 at 2:59 am
Hi Pat – looks very interesting, although I would require secure LDAP. Would that be possible to use or does one have to change something? Keep up the good work! Best wishes, Florian
July 3rd, 2005 at 1:54 pm
I don’t have an ldap server I can test this with right now, but is this secure? From looking at the code it looks like it would be trivial to forge a cookie to log on as any non-admin user.
August 17th, 2005 at 6:11 pm
I think that depends entirely on the cookie storing routine, which was copied verbatim from the original hack. That code came straight out of the WordPress function, so any insecurities would be shared by WP as well. At least, I think so.
This plugin has languished a bit as I’ve had to move on to other things, but I have a few patches to add and hopefully I’ll be able to release a new version sometime.
August 17th, 2005 at 7:33 pm
I am fairly new to Wordpress. I downloaded the LDAP authentication plugin and extracted it into wp-content\plugins. Unfortunately I do not see “LDAP Options” under the options menu. I am using Wordpress 1.5.1.3 – the demo screenshot shows version 1.5.1 – could the version be the problem?
thanks,
John
September 6th, 2005 at 3:05 pm
Forgive my ignorance. I forgot to activate the LDAP plugin.
John
September 6th, 2005 at 4:44 pm
[...] Yes, that is what I spent my sunday night doing. This fellow Alistair had created a hack for Wordpress 1.5 to allow for LDAP authentiction. Then this other fellow Pat Cavit wrote a plugin based largely off of Alistair’s code. That was also for Wordpress 1.5. [...]
October 24th, 2005 at 7:12 am
[...] It looks like Pat Cavit who runs Zilla Smash has coded a nifty little plugin that allows WordPress to authenticate against an LDAP server. Needless to say, this has great potential for universities and organizations who have LDAP based account provisioning and would like to offer blogging to large numbers of people. So here’s version 1.01 of my LDAP Authentication plugin for WordPress 1.5.1. Note that this will NOT WORK with any previous version of WordPress. Installation is pretty simple: download, unzip into wp-content/plugins, activate, go to the “LDAP Options†menu and set up your LDAP information. In the very near future we will be testing this LDAP plugin with WordPress MU. Check back for updates. We’ll post any code changes that are required for MU. [...]
October 26th, 2005 at 10:29 am
[...] So I found someone that had already done some integration with wordpress and LDAP here, but it assumes you dont allow anonymous binding to the directory. I havent got time to fix it now, but i’ve got the plugin installed, so i’ll sort it out this week. With any luck i’ll actually get around to it. [...]
November 7th, 2005 at 3:45 pm
I have WP 1.5.2 and intalled LDAP 1.01 to authenticate AD users. When I login as with an AD user account, the page on the browser is blank. I tried on Mozilla and got the same problem. No errors. Does LDAP 1.01 works with WP 1.5.2? What I am missing>
Thanks.
November 10th, 2005 at 1:25 pm
I also have the same problem as Roberto. No matter if the LDAP pw is correct or not, I get a blank screen after login.
November 18th, 2005 at 9:48 am
People who are getting blank screens may want to check to see if they have the LDAP module for PHP properly installed. A good way to make sure is to check if there’s an “ldap” section in the output of your phpinfo().
To hack Wordpress 2.0 so the plugin works, comment out the wp_login() function in wp-includes/pluggable-functions.php:128
- Andrew
January 14th, 2006 at 5:10 am
Andrew, can you explain it more detailed how did you got the plugin to work with Wordpress 2.0?
I have overwritten the function wp_login in pluggable-functions.php with the code from ldap_auth.php.
The error message during the activation of the plugin would be displayed but the plugin works.
January 18th, 2006 at 2:43 am
Hi,
I’ve add few line to Patrick’s plugin to automatically create new user in wordpress for known ldap user. Once connected, the new user can update his profile… saving time to the administrator.
January 20th, 2006 at 7:15 am
Since Yann had last said he was able to create users for know ldap user but neglected to post the code, I decided to tackle it myself.
Here’s my code FOR WP 2.x:
–find the line that has $result = $server->Authenticate ($username, $password, $user_data);
–modify the next line to the following:
if ($result == LDAP_OK) {
//call the registration function to create a wordpress user account for this
//successfully authenticated user
require_once( ABSPATH . WPINC . ‘/registration-functions.php’);
if ( !username_exists( $username ) ){
$user_id = wp_create_user( $username, “ldapuserâ€, $user_data[LDAP_INDEX_EMAIL] );
}
return true;
}
I’m looking at coding LDAP groups mapping to WP roles. I’m also toying with the idea of doing the same with LDAP groups with the Category Access.
I’m probably going to tackle the Category Access with LDAP groups first.
February 13th, 2006 at 4:02 pm
Oups,
Here his my code (very closed to dwang99’s):
if ($result == LDAP_OK) {
require_once(ABSPATH.WPINC.’/registration-functions.php’);
// LDAP user found : can get user ldap info from $user_data
// $user_data field: LDAP_INDEX_EMAIL, LDAP_INDEX_NAME, LDAP_INDEX_GIVEN_NAME,
// LDAP_INDEX_SURNAME, LDAP_INDEX_PHONE… more in ldap/ldap_ro.php
if (!$login) // user unknown in WP
{
// Build user info
$user_info['user_login']= $username;
$user_info['user_email']= $user_data[LDAP_INDEX_EMAIL];
$user_info['user_pass']= $password;
$user_info['first_name']= $user_data[LDAP_INDEX_GIVEN_NAME];
$user_info['last_name']= $user_data[LDAP_INDEX_SURNAME];
$user_info['nickname']= $username;
// create new account
$user_id = wp_insert_user($user_info);
}
return true;
}
Let us know about your new LDAP stuffs… Mapping roles would be cool.
February 20th, 2006 at 7:21 am
thanks yann for sharing your code:)
i’ve gotten working code for ldap roles for the ‘category access’ plugin for wp 2.0.
i’ll have to try tackling ldap roles for ldap authentication next.
i’m currently finishing up vhost plugin right now.
thanks again
February 21st, 2006 at 6:49 am
I am using WordPress 2.0.1.
I noticed that once I implemented this plugin, access to my locally created users (admins) was lost. While eventually I’ll want to just set certain ldap users as admins, for now, I wanted the ability to “fall back” to locally created users if the ldap call failed.
I don’t know if this is the best place in the code for it, but it broke when I tried to do something at the “if (($ldapAuth) && ($username != “admin”))” line.
This is in the ldap_auth.php file where $result is checked for ‘LDAP_ERROR_USER_NOT_FOUND’. I took my if statement from the original wp_login():
if ($result == LDAP_ERROR_USER_NOT_FOUND)
{
if ($login->user_login == $username && $login->user_pass == md5($password))
{
return true;
}
else
{
$error = __('Error: Wrong login.');
$pwd = '';
return false;
}
}
May 1st, 2006 at 8:45 am
Regarding previous post, don’t copy and paste that code. Certain things were changed via posting as HTML.
Question: Does this create any sort of security hole?
May 1st, 2006 at 8:47 am
This should not create any new security hole.
But I don’t understand why you want to create several “local” admin??
One should be enought!! Having several admin users is a security hole.
In my configuration, ldap server is the key for accessing the whole information system (word press is just a litle part of it) – and word press directory is protected by an htaccess file (connected to ldap groups). If ldap server crash, access to word press and other applications is impossible!
A secure solution to grant a local admin access in my configuration would be to set authorized IP in the htaccess.
Regards
May 4th, 2006 at 10:58 am
hi,
I have installed the LDAP plugin and also activated it.In ldap options i have entered the ip address of ldap server along with the port no.and alos created a user account in wordpress of existing user on ldap
But still its not autheticating with our LDAP directory.Can you please help me.
May 23rd, 2006 at 4:37 am
I’m looking at installing WP 2.x to use as a technotes blog where I work — I want students/staff/faculty to be able to read the blog and comment, but I don’t want anyone besides the IT staff to be able to have Editor/admin priviledges.
It looks like I’d have to play around with WP code to get the LDAP bit to work, but then it also looks like it would make everyone more than just subscribers. We don’t want all the students having blogs run from our site, just the ability to view the IT blog, and comment as necessary.
Any hints?
June 29th, 2006 at 12:53 pm
Hi,
I would like to setup a website with mantis+ Wordpress(Blog)+svn+webmail with LDAP auth. Could you pls tell me how to install this plugin on Wordpress 2.03 ? Cause I can’t see the LDAP option in Option’s page , but it does add to plugin page. ^^
July 3rd, 2006 at 2:51 am
I’ve just installed this plugin on WP 2.0.3
In apache log i get:
PHP Fatal error: Cannot redeclare wp_login() (previously declared in /var/www/html/wordpress/wp-includes/pluggable-functions.php:174) in /var/www/html/wordpress/wp-content/plugins/ldap_auth.php on line 109, referer: http://niobe.ealaddin.org/wordpress/wp-admin/plugins.php
July 11th, 2006 at 3:27 am
I found the bug commented in comment #34 installing the plugin on WP 2.0.3.
However, i realized that the plugin was installed ok. I think the problem is only the first time that is installed, when you redefine wp_login and wp_setcookie and this functions are already defined through pluggable_functions.
I solved it with a little patch.
I’m new in wordpress, so i don’t know how to contribute with my patch. I think you Zilla could update your plugin… because in the “2.0_Plugin_Compatibility” list on the wordpress site they are listing your plugin as “plugins that don’t work”.
Regards,
Hugo
July 17th, 2006 at 2:16 am
Hi,
Am having the same problems with the following error msg.
Fatal error: Cannot redeclare wp_login() (previously declared in C:\wamp\www\wordpress\wp-includes\pluggable-functions.php:174) in C:\wamp\www\wordpress\wp-content\plugins\ldap_auth.php on line 202
Does anyone know how to fix this???
Thanks in advance guys,
AJ
August 7th, 2006 at 10:56 pm
Hi A.J.
As i mentioned above, i solved this with a little patch. I was asking how to submit my patch, but i never get an answer
You can find my patch and a complete fixed package here:
http://hugo.vulcano.cl/development/wordpress/ldap-auth-patch/
Good luck.
Hugo
August 8th, 2006 at 1:53 am
Ok I think i have a working hack for version 1.0rc4 mu.wordpress of this ldap mod. Its required some modding of the ldap_auth.php file for both wp_ functions. Additionally there is a pluggable.php file in the mu-plugins folder that is causing headaches.. I have no idea why its the but things appear to function a bit better when its removed =P. I dont have anywhere to post this code at the moment however i can email it to someone who can i hope post it.
Anyway my email address is abarker [at] clunet.edu (Sorry I dont Like Spam).
August 11th, 2006 at 3:24 pm
hugo,
thanks for the plugin, the options show up but i get a really long list of errors starting with the following code..
Dock()) { return LDAP_ERROR_CONNECTION; } // Set up the search stuff $attributes_to_get = array (”fullName”, “mail”, “givenName”, “sn”, “phone”); $this->SetSearchCriteria (”(uid=$in_username)”, $attributes_to_get); $this->Search(); // Did we find the user?
thoughts??
August 14th, 2006 at 12:18 am
For WordPress MU if anyones interested.
http://wpmudev.org/project/MPMU-LDAP-LDAP-Authentication-Plug-in/
August 15th, 2006 at 5:19 pm
AJ, it seems like a connection error. Check your “LDAP Server” setting… and the user/password in case you don’t allow anonymous searches.
August 16th, 2006 at 2:18 am
For WordPress MU… Updated for latest nightly.
http://wpmudev.org/project/WPMU-LDAP-Authentication-Plug-in
August 21st, 2006 at 10:44 am
I am getting the same behavior as AJ in comment #6974. This is either with the original or patched versions of this code. This happens as soon as you activate the plugin. It is displaying the code from the ldap_ro.php Authenticate function instead of running it. This happens before I get a chance to even configure my LDAP Server settings. I turned on errors and received the following:
Warning: Cannot modify header information – headers already sent by (output started at ldap\ldap_ro.php:160) in wp-admin\plugins.php:22.
I know the modify headers issue is usually a whitespace problem, but this only happens when I activate this plugin. I have checked whitespace in all of the files involved and everything looks fine. Any thoughts?
August 22nd, 2006 at 8:39 am
Note: the error upon activation occurs related to wp-admin\plugins.php:16. The error I posted above was from deactivating the plugin.
August 22nd, 2006 at 8:42 am
same issue with me, the error message pops-up even before i’ve had the chance to input LDAP details.
any ideas??
August 28th, 2006 at 10:49 pm
Do you have the php-ldap package?
August 29th, 2006 at 2:40 am
[...] It being a small world, Alistair Young from UHI made this plugin for Wordpress 1.5 Pat Cavit took it onward somewhat and then William Gray did some some more work taking it to 1.5.2. Of course this is all single-user Wordpress, a year-old (Wordpress is up to version 2 now) – and inevitably mu is slightly different again…. [...]
September 14th, 2006 at 8:09 am
[...] For the nerds out there: To accomplish this task, I downloaded an LDAP plugin from Pat Cavit / Zilla Smash and basically had to rewrite it to work with lyceum and UQ’s LDAP setup. The result is highly specific to UQ but I can share the results if anyone really feels the need. It involves a small hack here and there to the lyceum code too. [...]
October 23rd, 2006 at 10:06 pm
I wanted to mix LDAP users with some local ones who don’t have LDAP accounts. I used the user_status field in the user table to flag local users. This field is apparently “dead” in WordPress
http://wordpress.org/support/topic/65971
You need to change this value manually to something that evaluates to true (I used 1) if you want the user to be local to WordPress.
Here are the changes I made to ldap_auth.php
Line 11: $local_user = false;
Lines 145-153 (in function wp_login):
$login = $wpdb->get_row(”SELECT ID, user_login, user_pass, user_status FROM $wpdb->users WHERE user_login = ‘$username’”);
// update global $local_user
global $local_user;
$local_user = $login->user_status;
// Keep the admin user local in case all LDAP servers go down
// Don’t check local users against LDAP
if (($ldapAuth) && ($username != “admin”) && (!$local_user))
This gets ‘user_status’ from the database, updates the global variable $local_user, and skips the LDAP routine if it evaluates to true.
Lines 234-237: (in function wp_setcookie)
// Is user_status set to “1″ in the database? If so, it’s a local account.
global $local_user;
if(($ldapAuth) && ($username != “admin”) && (!$local_user))
This gets the value of $local_user, and hashes the password appropriately so the user stays logged on between pages.
I haven’t made changes to the user account creation screen so you can set the value of user_status appropriately, but it works.
Hope this helps someone.
October 25th, 2006 at 3:56 am
AJ, did you ever figure out what the issue was?
Anybody?
October 31st, 2006 at 8:20 am
The reason ldap_ro.php is giving you a face full of code rather than executing is most probably because it starts with a short tag:
October 31st, 2006 at 8:53 am
Of course I can’t put that tag in a comment!
You need to change line 1 of ldap_ro.php so it has the new PHP opening tag.
<?php
rather than
<?
http://uk.php.net/manual/en/language.basic-syntax.php
October 31st, 2006 at 8:56 am
thanks, yeah we found this pretty quickly. Now we’re troubleshooting an error on line 260 says wp_login arg 2 is missing.
Any ideas?
October 31st, 2006 at 9:43 am
If user account does not exist create it
ldap_auth.php
require_once( ABSPATH . WPINC . ‘/registration-functions.php’);
………
if ($result == LDAP_OK) {
// if wordpress account with this $username does not exist, create it
$user = ”;
$user->user_login = $username;
$user->user_pass = $password;
$user->first_name = $user_data[LDAP_INDEX_GIVEN_NAME];
$user->last_name = $user_data[LDAP_INDEX_SURNAME];
$user->user_email = $user_data[LDAP_INDEX_EMAIL];
if (!username_exists($user->user_login)) {
wp_insert_user(get_object_vars($user));
}
return true;
}
November 16th, 2006 at 3:13 pm
Have got this working with AD (Wordpress 2.0.5)
I grabbed the updated plugin from http://hugo.vulcano.cl/development/wordpress/ldap-auth-patch/ (see comments above).
I found info about schema differences at http://www.oneorzero.com/wiki/index.php?title=OneOrZero_Settings
I changed line 36 in ldap_ro.php to:
$this->SetSearchCriteria (”(sAMAccountName=$in_username)”, $attributes_to_get);
I changed line 90 in ldap_ro.php to:
$this->SetSearchCriteria (”(sAMAccountName=$in_username)”, $attributes_to_get);
Not sure if both changes are required, haven’t tested thoroughly but it seems to be working fine.
A couple of suggestions too for future development of this plugin:
1. Would be cool is you could allow for more than one search DN
2. Have an option in the admin section for use against Active Directory to make it easier to manage.
Thanks
November 30th, 2006 at 2:33 pm
Where can i download a final LDAP-Authentication plugin for WordPress 2.0.5?
I am interested in participating in its optimization for the following versions.
THX
December 8th, 2006 at 1:15 pm
Has anyone gotten this working with 2.1.x? I’m willing to pay for a working plugin that will tie together our active directory user base and wp. Contact info on my website.
February 7th, 2007 at 11:40 am
Just double-asking if anyone has this working with 2.1.x?
March 23rd, 2007 at 1:12 pm
Hi, I tried to use this plugin on wp 2.1, I installed it but I when I try to login with any user besides admin, I always keep getting “Error: Wrong login ” With user only registered on wp and users registered in both.
Then I got wp 1.5.2 to try it and but it doesn’t work too.
Anyway, just in case that I make it work, I have another question. Is it possible to make it that you don’t need to be registered on wp? that you just have use the same login you use on LDAP? If that is possible, how can I do it?.
Thanks in advance.
April 2nd, 2007 at 3:33 pm
Just updated to WP 2.1 and all working well – authenticating through AD.
April 2nd, 2007 at 7:59 pm
Hey John,
can you share with us how you got the ldap authentication working with WP2.1 and AD?
I need to get that setup =)
Any info, setup guide would be greatly appreciated.
April 13th, 2007 at 7:12 pm
oops nvm I’ll give your above instr a shot, thx again
April 13th, 2007 at 7:22 pm
[...] LDAP Authentication: Permite autentificarse en Wordpress utilizando LDAP. [...]
April 14th, 2007 at 3:35 am
I’d really like to know how you got this working on WP 2.1 – any hints or tips John/Chris?
April 24th, 2007 at 1:42 am
[...] some refactoring, clarifying, and commenting. I hope I’ve got it right, but hopefully others that came before me will correct me if I’m wrong. I think I’m going to see about [...]
May 4th, 2007 at 8:29 am
[...] installed and released a version of WPMU, making use of the nice WPMU LDAP plugin. A good deal of people before me have worked on this, sometimes with several instances of individual releases, [...]
May 21st, 2007 at 2:55 pm
I have patched this plugin to work with WordPress 2.6 if anyone is interested. I will post a link here for my patched version in the next day or so.
April 1st, 2008 at 2:36 pm
2.5 sorry… not 2.6….
April 1st, 2008 at 2:36 pm
John Wohler,
I’m interested in how you when about patching WP 2.5. It would help me greatly.
April 9th, 2008 at 7:49 am
Hi,
I am getting fatal error when going to activate LDAP authentication plugin
Can any one resolve this problem i am using wordpress 2.x version
April 18th, 2008 at 9:54 pm
My email address is tusharparadhi@gmail.com
April 18th, 2008 at 9:55 pm
I am interested in the patched plugin, too. My email address is sebi1310@gmx.de.
Thanks.
May 8th, 2008 at 7:57 am
Hi John, please share how you make it work with 2.5.
Thanks,
Hazman Aziz
May 8th, 2008 at 9:33 am
John…did you ever post the patch anywhere?
Thanks!
Mark.
June 20th, 2008 at 5:45 am
I’m also interested in the patch for 2.5.x. I’d greatly appreciate it if you can please post it! Thanks in advance.
July 2nd, 2008 at 8:48 pm
“John Wohlers”: Can you please post that patch? I am having problem in making it work with 2.6
Thanks
August 6th, 2008 at 12:48 pm
[...] LDAP Authentication: Permite autentificarse en Wordpress utilizando LDAP. [...]
August 17th, 2008 at 4:25 pm
I’ve set up the LDAP Authentication plugin and activated it. Once I get to the login page, however, my username and password are not accepted. I use the same username and password to log into the ldap server. Any ideas?
August 26th, 2008 at 8:55 am
[...] LDAP Authentication: Permite autentificarse en WordPress utilizando LDAP. [...]
November 1st, 2008 at 5:16 am