Happy New Year! I hope everyone has a wonderful 2013.
Maybe someone can give me a suggestion about how to fix the following problem. I am trying to modify the web2py-estore app which is old, but still works. It does not come with any auth settings or db.py so I copied the db.py from the "welcome" app to the models directory. here are the auth settings: auth.settings.registration_requires_verification = True auth.settings.registration_requires_approval = True auth.settings.reset_password_requires_verification = True The login and register functions accept input ok. When I register, I see in the console window the link to verify and when clicked, that gives a message that "registration is pending approval". Then I use appadmin to access the database field, auth_user.registration_key, to modify it and save the change, that field is not accessible. I can see it as a field listed under db.auth_user but when the record is selected, that is not a field that shows up in the appadmin form. What do I need to fix or look at so that this becomes an editable field? thanks, Margaret --