I lost my login details as it has been quite some time now since I last accessed it. I need to use wordpress, so I also need access to admin area. Hope someone can help.
Okay... here it goes... Just login to your phpmyadmin see the table wp_users browse that... and you will see your admin login name and other details also you will see your encrypted password. Just replace it with the encrypted code i am writing below, it will reset your password to 123456 and then you can login to wp-admin and change it. Encrypted password to write:: e10adc3949ba59abbe56e057f20f883e this is the exact solution of your query...
I have seen the login names, there are two. One with my nick and other one is admin. But in the wp_pass .... I can't seem to see any encrypted or direct password.... Is there something wrong I am doing? ... thanks for the response.
If there is no direct or encrypted password it could be blank ( as in the password is blank).... so just use the username and no password.
I guess he might have set that password and then opened the phpmyadmin to check out encrypted password and then gave me the same.... may be
That called 'hashing'. WP uses md5 hashing e10adc3949ba59abbe56e057f20f883e <?php $newpassword='123456'; echo md5($newpassword);//will output e10adc3949ba59abbe56e057f20f883e ?> PHP:
or just do it online http://www.phpbbhacks.com/md5.php I am aways forgetting my passwords and having to go in to SQL to reset them so much so I have a txt file with "5f4dcc3b5aa765d61d8327deb882cf99" thats the md5 string for "password"
^There is a simpler way: UPDATE table_name SET password_field=MD5('your_password_string') WHERE username_field='your_username' Code (markup): Just run that SQL!