On Tuesday, May 17, 2011 3:10:03 PM UTC-4, Jacob Kaplan-Moss wrote: > > On Tue, May 17, 2011 at 2:00 PM, Jeff Blaine <[email protected]> wrote: > > That gets us somewhere, because authenticating to Apache/LDAP as jblaine > > did NOT make a Django user jblaine. > > That's interesting - perhaps LDAP is reporting a different username? > You could check in the auth_user table to see what's getting created > when you authenticate; you should see a entry get created the first > time you authenticate as a given user > I guess I'll start the debugging then, because:
DELETE FROM auth_user WHERE username != 'admin'; Query OK, 1 row affected (0.00 sec) Auth to Apache/LDAP as jblaine, get Admin login screen. mysql> SELECT username FROM auth_user; +----------+ | username | +----------+ | admin | +----------+ 1 row in set (0.00 sec) mysql> -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

