So, today I managed to finally setup an openldap server using the excellent instructions at debuntu.org. I then installed the latest release of phpldapadmin, however, the latest (admittedly, alpha) release has a pretty big bug in my opinion: you cannot create any classes of user or group. So, a bit of research and a quick fix presented itself:
--- phpldapadmin/lib/Attribute.php +++ phpldapadmin/lib/Attribute.php, 1 October 2007 -if (isset($this->values[$i])) return $this->values[$i]; +if (isset($this->values[$i])) return ''.$this->values[$i];
Until the next release of phpldapadmin, that should do the trick! Guessing a typo made it through quality control.. :)
October 2, 2007



















Sorry, no comments yet.