HandySolo: I figured out a way to do it, without using the phpMyAdmin thing. Using a sql command you can hash using the MD5 hashing algorithm. Its really quite easy too. Thanks to you for pointing me in the right direction. Here is the query.
UPDATE wp_users SET user_pass = MD5(‘mypass’) WHERE ID = 1;
For anyone out there here is how it works.
You log into your wordpress database within MySQL. There are several ways to do this, using the commanline or the new MySQL query analyzer. The password and user information is located in the table wp_users. Once you are ‘using’ the correct database you just execute the above command/query. Since all the admin stuff is located in id# 1 the only thing you will have to alter is the ‘mypass’ part. Just fill in your desired password, and you should be set.
Anybody who needs more explanation on this, please feel free to email me at;
[email protected] It may take me a day to get to you, but I will try to respond the best way I know how.
Thanks again to HandySolo for helpin meh.