Reset user’s password on a MediaWiki
I needed to reset the password for a user on a MediaWiki site. Luckily, I run into this post “Reset a user password on MediaWiki - Greg’s Postgres stuff” which helps you to do so. The five-cent summary for a MySQL powered site:
UPDATE user SET user_password = md5(CONCAT('123-',md5('newpassword'))) WHERE user_id=123;
About this entry
You’re currently reading “Reset user’s password on a MediaWiki,” an entry on Xavier Llorà
- Published:
- Monday, May 14th, 2007 at 6:31 pm
- Author:
- Xavier
- Category:
- Notes
No comments
Jump to comment form | comments rss | trackback uri