hello Sir, We are learning Zope right now and have just 2 Q: Q1. How can I implement a "ChangeMyOwnPassword page", exactly like when I login to my personalization page at http://www.zope.org/Members/harrisho/update_html. so each user can maintain his password. Q2. "forgot password" How could we email back the password to user given his email is valid in Zope? Any hints would be very much appreciated. *N.B. We are using: SERVER_SOFTWARE 'Zope/(Zope 2.6.1 (binary release, python 2.1, linux2-x86), python 2.1.3, linux2) ZServer/1.1b1' rgds, hh At 04:59 2003.06.27 -0400, webmaster@zope.org wrote:
You have been registered as a Zope.org member, which allows you to personalize your view of the Zope.org website and participate in the Zope community.
To login to the site, visit your personalization page at http://www.zope.org/Members/harrisho/update_html.
Your login id and password are:
Login ID: harrisho
harrisho02 wrote at 2003-6-27 18:16 +0800:
We are learning Zope right now and have just 2 Q:
You should learn to search the mailing list archives (e.g. via Google: "site:lists.zope.org ...").
Q1. How can I implement a "ChangeMyOwnPassword page", exactly like when I login to my personalization page at http://www.zope.org/Members/harrisho/update_html. so each user can maintain his password.
Search the archives for "manage_users". Read the Zope Book for "Proxie roles".
Q2. "forgot password" How could we email back the password to user given his email is valid in Zope?
That's more difficult. The password is maintained in a private attribute ("__") of the user object, inaccessible by TTW code. You need an External Method to access this attribute. You use "dtml-sendmail" to create the mail. Search for it to find examples. Dieter
participants (2)
-
Dieter Maurer -
harrisho02