I have two ideas:
* First, just try the forgot password link and see what that does.
Obviously it won't email you, but the email it would have sent will
show up in the output of script/server.
* Second, run script/console, and see what the command "User.last"
says. If that is your user you can manually set the password with the
following set of commands:
u = User.last
u.register
p = u.pseudonyms.first
p.password = p.password_confirmation = "newpassword"
p.save
exit
How far do those ideas get you?
Bill
Sent from my iPhone