[fw-general] Zend_Form_Element_Password

2011-03-31 Thread Steve Rayner
Is it possible to get the password field populated when populating a form? I like the default behaviour for a login form, when the value is not populated, but for editing a user's details i want the current password populated in the box. My only work around at the moment is to use a

Re: [fw-general] Zend_Form_Element_Password

2011-03-31 Thread Kaiuwe
Zend_Form_Element_Password::setRenderPassword() http://framework.zend.com/apidoc/core/Zend_Form/Element/Zend_Form_Element_Password.html#setRenderPassword But it is a very bad idea because the password is in the HTML source code (value). Am 31.03.2011, 12:48 Uhr, schrieb Steve Rayner

Re: [fw-general] the blank screen (no error information)

2011-03-31 Thread David Mintz
On Wed, Mar 30, 2011 at 5:23 PM, Matthew Weier O'Phinney matt...@zend.comwrote: -- David Mintz da...@davidmintz.org wrote (on Wednesday, 30 March 2011, 04:53 PM -0400): On Wed, Mar 30, 2011 at 3:58 PM, Matthew Weier O'Phinney matt...@zend.comwrote: -- David Mintz da...@davidmintz.org

[fw-general] Re: [zf-contributors] Tools going down for upgrade

2011-03-31 Thread Ralph Schindler
All the tools are back online and up to latest version- Jira, Crowd Confluence. Everything seems to be performing very well. If you find any inconsistencies, please let me know immediately! Thanks for your patience! -ralph On 3/30/11 10:00 AM, Ralph Schindler wrote: Over the next few

Re: [fw-general] Zend_Form_Element_Password

2011-03-31 Thread Simon Walter
On 31/03/2011 19:48, Steve Rayner wrote: Is it possible to get the password field populated when populating a form? I like the default behaviour for a login form, when the value is not populated, but for editing a user's details i want the current password populated in the box. My only work

Re: [fw-general] Zend_Form_Element_Password

2011-03-31 Thread JoshuaLeMorris.com
It would be better to design the system so the password is never saved raw in the system, only save hashed. Then if a user wants to recover the password generate a temp and then have them set a new password. Then if you are salting your hashes you have a far more secure application. Just my

Re: [fw-general] Zend_Form_Element_Password

2011-03-31 Thread Simon Walter
On 01/04/2011 12:18, JoshuaLeMorris.com wrote: It would be better to design the system so the password is never saved raw in the system, only save hashed. Then if a user wants to recover the password generate a temp and then have them set a new password. Then if you are salting your hashes