Lost WPMU Admin password
What do you do when you’ve lost your Admin password and the php_mail() ain’t working? Why, you just manually change your password in the DB. But how do ya do that, Curt? You can’t just pull up phpmyadmin and look because the password is encrypted… it’s a bunch of gibberish. It’ll take your crappy Amiga about 30 years to crack that password. Here’s the easy way, run this query in phpmyadmin:
UPDATE `wp_users` SET `user_pass` = MD5( ‘new_password_here‘ ) WHERE `wp_users`.`user_login` = “admin_username“;
There. now you should be able to log into your back end!



September 9th, 2008 at 11:42 pm
[...] 本文参考:《Lost WPMU Admin password》。 [...]