I'm using this snippet, that allows users to only need to enter an email address to register for my app: http://djangosnippets.org/snippets/686/

Things are almost working perfectly. The problem is when a user has an email address that's above 30 characters. I get a "Ensure this value has at most 30 characters (it has 40)." error.

This is because the username is only supposed to be 30 characters. Is there a simple way to just tell Django that the username can be longer? It seems like there should be a fairly straightforward override for this.

link|improve this question

feedback

2 Answers

This actually isn't simple at all. This requires subclassing the User model and using that everywhere. I've never had to do it, for this case, but it would likely cause significant issues with the Admin interface. You could also edit django's source to pull it off (ick).

Or even use this solution: Can django's auth_user.username be varchar(75)? How could that be done?

It's quite ugly though.

You're probably better off writing an authentication backend to use the email field for authentication rather than using the username field. To populate the username (which is required) then you'd just generate some sort of random unique username maybe by hashing or using a UUID.

link|improve this answer
Or, you can edit the Django source!? – André Caron Jul 15 '11 at 17:43
I'm also trying to register/authenticate with an email address, but I can't figure out how to handle the username. I removed the username from my template, but since it's a required field the form doesn't validate. I did create a custom registration backend to generate as hash of the user, but it never gets invoked because of the invalid form. Any ideas? – Raj Aug 13 '11 at 16:07
feedback

Hopefully this solution should help you : http://www.micahcarrick.com/django-email-authentication.html

link|improve this answer
that's an amazing article, but i'm still running into the 30 character error – Brenden Jul 19 '11 at 22:26
did you manually update the database column? – sprezzatura Jul 24 '11 at 11:56
I did not manually update the column. Is that the next step? – Brenden Aug 8 '11 at 23:13
I just manually updated the sqlite3 column to 75 and i still get the same error – Brenden Aug 8 '11 at 23:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.