Re: LDAP and local users

2013-09-17 Thread Stephen Ingram
On Tue, Aug 27, 2013 at 11:46 AM, Janos SUTO wrote: > > yes, I'm planning to release the final 0.1.24 this week. > > Regarding the upgrades, I try to make an upgrade as smooth as possible, > and provide a step by step instructions on how to do that. > > The previously mentioned steps are not part

Re: LDAP and local users

2013-08-27 Thread Janos SUTO
On 2013-08-27 19:52, Stephen Ingram wrote:   Works perfectly!  good It would also be nice to specify Master admin in LDAP too instead of having to deal with local user. Is the upgrade process that rough between versions? I used a mix of binaries and compiling and ran into several location

Re: LDAP and local users

2013-08-27 Thread Stephen Ingram
On Sat, Aug 24, 2013 at 1:39 AM, Janos SUTO wrote: > > On 2013-08-24 01:53, Stephen Ingram wrote: > >> >>> That did it! Thanks. Any chance of SSL LDAP connections? I really hate >>> to send clear text over the wire. >>> >> > try the following: > > $config['LDAP_HOST'] = 'ldaps://ldap.yourdomain.c

Re: LDAP and local users

2013-08-24 Thread Janos SUTO
On 2013-08-24 01:53, Stephen Ingram wrote: That did it! Thanks. Any chance of SSL LDAP connections? I really hate to send clear text over the wire. try the following: $config['LDAP_HOST'] = 'ldaps://ldap.yourdomain.com/'; See http://php.net/manual/en/function.ldap-connect.php for more inf

Re: LDAP and local users

2013-08-23 Thread Stephen Ingram
On Fri, Aug 23, 2013 at 4:51 PM, Stephen Ingram wrote: > On Fri, Aug 23, 2013 at 4:21 PM, Janos SUTO wrote: > >> >> I think I got it. Please check model/user/auth.php for the >> checkLoginAgainstLDAP() function, and make sure it has >> >> if(isset($query->row['dn']) && $query->row['dn']) { >> >>

Re: LDAP and local users

2013-08-23 Thread Stephen Ingram
On Fri, Aug 23, 2013 at 4:21 PM, Janos SUTO wrote: > > I think I got it. Please check model/user/auth.php for the > checkLoginAgainstLDAP() function, and make sure it has > > if(isset($query->row['dn']) && $query->row['dn']) { > > and not just > > if(isset($query->row)) { > > It's a known bug and

Re: LDAP and local users

2013-08-23 Thread Janos SUTO
I think I got it. Please check model/user/auth.php for the checkLoginAgainstLDAP() function, and make sure it has if(isset($query->row['dn']) && $query->row['dn']) { and not just if(isset($query->row)) { It's a known bug and is fixed in later builds. Janos On 2013-08-24 00:57, Stephen Ingra

Re: LDAP and local users

2013-08-23 Thread Stephen Ingram
On Fri, Aug 23, 2013 at 3:09 PM, Janos SUTO wrote: > > On 2013-08-23 23:55, Stephen Ingram wrote: > > No SSO enabled (I assume it's disabled by default), just trying to >> > > yes > > > use LDAP right now. It works for the users and they are regular users >> when they login, however, there is n

Re: LDAP and local users

2013-08-23 Thread Janos SUTO
On 2013-08-23 22:43, Stephen Ingram wrote: If I'm using LDAP authentication, it works great, however, I can no longer login as a local user (admin@local). Is this supposed to be the case such that you have to create admins somehow in your directory or is this an error? well, you should be able

LDAP and local users

2013-08-23 Thread Stephen Ingram
If I'm using LDAP authentication, it works great, however, I can no longer login as a local user (admin@local). Is this supposed to be the case such that you have to create admins somehow in your directory or is this an error? Steve