<div dir="ltr"><div>Using an md5 hash is not enough. But it probably worked because older</div><div>versions of Drupal used plain md5 hashes. <br></div><div><br></div><div>The current hashing scheme is <a href="https://en.wikipedia.org/wiki/Salt_(cryptography)">salted</a>, and that is what is now stored after</div><div>you changed the password from the web site itself. <br></div><div><br></div><div>Using the password script I detailed before avoids having to do it in 2 steps.<br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Apr 3, 2020 at 3:59 PM Charles M <<a href="mailto:chaslinux@gmail.com">chaslinux@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">I managed to muddle through changing the password. Here's what I did:<br>
<br>
I used <a href="https://www.md5hashgenerator.com/" rel="noreferrer" target="_blank">https://www.md5hashgenerator.com/</a> to generate an md5 sum of a<br>
new password, let's say for example: ThisPassword<br>
<br>
It spat out: 82aa4d3a83cae98a08a1c5859d777bbb<br>
<br>
I then ran<br>
<br>
update users set userpass="82aa4d3a83cae98a08a1c5859d777bbb" where<br>
username="myusername";<br>
<br>
I was able to log into the application using myusername and<br>
ThisPassword, then go into the application and change it again. It<br>
hashed with a completely different hash when I checked the table in<br>
MySQL. Thanks for all the responses.<br>
<br></blockquote></div></div>