Hi All, I was able to setup review board with the default auth backend. However I am having problem setting it with LDAP.
Here is what I did: 1). I added the following to the settings_local.py. Restarted the server "manage.py runserver 0.0.0.0:8000" I made sure all the LDAP props are correct. I tried both 'django.contrib.auth.contrib.ldapauth.LDAPBackend' and reviewboard.accounts.backends.LDAPBackend'. No errors or warnings. Any thoughts on what I am doing wrong? Help is appreciated. Thanks AUTH_PROFILE_MODULE = 'accounts.Profile' BUILTIN_AUTH = False AUTHENTICATION_BACKENDS = ( 'django.contrib.auth.contrib.ldapauth.LDAPBackend' ) #'reviewboard.accounts.backends.LDAPBackend' LDAP_EMAIL_DOMAIN = '<not shown here>' LDAP_URI = '<not shown here>' LDAP_SERVER_URI = '<not shown here>' LDAP_UID_MASK = '<not shown>' LDAP_ANON_BIND_UID = '<not shown here>' LDAP_ANON_BIND_PASSWD = '<not shown here>' LDAP_DEBUG = True DEBUG = True --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---