phpreport icon indicating copy to clipboard operation
phpreport copied to clipboard

Support for changing user passwords

Open jaragunde opened this issue 9 years ago • 1 comments

[Trac import] Reported by: aperez Original date: Thursday, 16 September 2010 20:05

Currently, the only option to change passwords for users is by directly modifying the usr table using the PostgreSQL CLI, like this:

#!sql
  update usr set password = md5('mynewpassword')
     where login = 'myusername';

It would be great to have a panel somewhere (probably under “Users » Personal Page”) to let users change passwords by themselves. Not having this is annoying when not using LDAP authentication.

jaragunde avatar Mar 09 '16 10:03 jaragunde

[Trac import] Comment by: jaragunde Original date: Monday, 15 November 2010 20:41

commit ccd2fe8891baa9b365214a03a9c6c9cee68e6014
Author: Jacobo Aragunde Pérez <[email protected]>
Date:   Wed Oct 27 21:20:54 2010 +0200

    Allow password change from the users management screen in the web interface.

With this commit, admin users are able to change the passwords of every user in the application. It's a first step, but regular users can't change their own password yet.

jaragunde avatar Mar 09 '16 10:03 jaragunde