> I'm feeling a bit dense here. What is it, exactly, that isn't working? > What have you done, what did you expect, and what happens instead? > AUTH_PROFILE_MODULE isn't fundamentally broken, so some specifics on what > isn't working for you would help someone to help you fix whatever it is that > isn't working. But from all you've written I still have no idea what that > is.
Karen: Thanks for your patience, at least I'm driving and drilling towards a clearer definition of the question. I'll try getting more specific. We can't determine how to populate the table specified in AUTH_PROFILE_MODULE with the user row during the registration process. Inside of registration.models.py there is a class defined called RegistrationManager with the methods create_inactive_user and create_profile. Create_inactive user does what one would think that it would. The code in create_inactive_user explicit in telling you it is saving the fields self, username, password & email. create_profile on the otherhand although its method name is analogous seems simply to create an activation key, and there is way to determining how and where it is actually saving the profile. it is also unclear from the code in comments in model.py where and how AUTH_PROFILE_MODULE is being handled. from our experience the object AUTH_PROFILE_MODULE is not being writen to at all. Now it seems that if AUTH_PROFILE_MODULE is being defined as a constant object then somehow in Django there would be a way to open and save to it, during the registration process. We also can't find figure out how the registration process writes the temporary file with registration information but does not write anything to the AUTH_PROFILE_MODULE object as in our myproject.mysite.models.py file and in myproject.mysite.settings.py. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

