changing own password in admin

Found a bug? Tell us!!
Post Reply
Guest

changing own password in admin

Post by Guest »

Hi!

We're using 0.8.5 - users cannot change their password! When on the admin side, on "personal settings", we have a "your password" field but no "old password" field !!!

a user with administrative level 255 does get the field.

how to let normal users change their password themselves???

thanks for your help
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: changing own password in admin

Post by garvinhicking »

Hi!

You are right, this is a oddity in the 0.8.5 release. You can bypass it easily by editing your include/tpl/config_personal.inc.php file.

Look at this line:

Code: Select all

                                          'permission'  => 'personalConfiguration'),
and change it to this:

Code: Select all

                                          'userlevel'   => USERLEVEL_EDITOR),
inside the array block for "check_password".

I am very sorry for the problem, it has gone unnoticed before. I will talk to the other developers and see if this rectifies a new 0.8.6 release or if we instead force development on our 0.9 version to get it out.

Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
openadrien
Posts: 1
Joined: Mon Oct 10, 2005 3:38 pm

Post by openadrien »

Hey Garvin ;)

Thanks for your help. The fix works! However it seems that now, after changing passwords, one request later we are logged out (pass in session not updated I suppose) - no big deal though, i'm sure you'll fix that in 0.9 !

FYI we here at Wengo / OpenWengo use s9y for all our blogging needs! We have a public blog and now an internal one, too!

Keep up the good work!
/adrien
the message is the signature
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

If you are logged out after changing the password, this means that your PHP session support does not seem to work properly - because the authentication via cookie stored password only takes place if no valid session could be found?!

Nice to know that you come from Wengo! I've heard of that site in the past and was very lucky to hear you like Serendipity! If you have any more issues or questions, please let me/us know! :)

Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Post Reply