Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+6 votes
149 views
in Q2A Core by
Q2A version: 1.8.6

1 Answer

+2 votes
by

You can use the "forgot my password" link and put in your email address. If that's not working then in a PHP script or on the command line run this:

echo password_hash("password", PASSWORD_DEFAULT);

Replace "password" with the actual password you want to use. You'll get a string that starts "$2y$10...", copy that into the 'passhash' field of the users table for that user.

...