Initially my problem was getting django-registration to add/update new users to my custom designed mysite.UserProfile table.
Other than that django-registration worked o.k. sent notifications and so on, but without it giving me control of our custom user profile it was impossible to move forward. I'm my discussions here though in this discussion group, it appears that the my questions might be better answered if I used the profiles component that registration was built to work with, so the questions and answers would have more of a standard context. * Today I updated django-registration to .06 and also installed its userprofiles .06 cousin. * Modifications to mysite.myproject.models.py and mysite.settings were made closer to online examples to make my installation more standard for the sake of discussion. *** I though have the following problems. * after running manage.py the new table that should be created from from the userprofile.models imported from BaseProfile does not appear in my phpPgAdmin (postgreSQL) browser even after refresh and reboot of the server. * when attempting a registration i get the following error global name 'alnum_re' is not defined so i go to registration.views.py and rem out that... #from django.core.validators import alnum_re and add: import alnum_re = re.compile(r'^\w+$') # regexp. from jamesodo in #django * now when I attempt registration i get Request URL: http://www.rareasianbooks.com/accounts/register/ invalid syntax (views.py, line 87) Exception Location: /usr/lib/python2.3/site-packages/userprofile/ urls/en.py in ?, line 3 Any suggestions would be appreciated. --~--~---------~--~----~------------~-------~--~----~ 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 django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---