Is there a way that I can reset a lost oxadmin password? Any help would be much appreciated.
Lost oxadmin password
Collapse
X
-
explanation
Could you please explain how you exactly do this.
How you generate this encrypted password ? ( openssl ? )
Which value will be replaced ?
Where I find it in the database ?
The way to disable the context-authentication isn't really professionell.
Thanks a Lot
Comment
-
Losing passwords isn't professional as wellDisabling context authentication only applies to the admindaemon, not the the groupware.
However, those passwords are base64 encoded strings of SHA1. You might generate a new password in SHA1, base64encode it and put it to the database.
Greetings
Comment
-
Thats the "user" table at the groupware database:
Code:mysql> SELECT userPassword FROM user WHERE cid=1 and id=2; +------------------------------+ | userPassword | +------------------------------+ | 5en6G6MezRroT3XKqkdPOmY/BfQ= | +------------------------------+
Greetings
Comment
Comment