208.319.9835

Boise, Idaho
Or Remote

How to manually reset a password in vBulletin

If you are the admin of your vBulletin forum and have access to the database, you can change the password for any user (including yourself) by issuing the following sql query:

UPDATE `user`
SET `password` = MD5(CONCAT(MD5('newpassword'), `user`.`salt`))
WHERE `userid` = 1

Ensure you have the correct userid!

4 Responses so far.

  1. Berk Gilliam says:

    You can change your password, If you have direct SQL access to server. It will work as described above as soon as you change it to alterable or deletable. After changing the password you can again switch to unalterable or undeletable.

  2. Hi,

    I have an older Vbulletin forum (still running 3.7) and needed to change the admin password. The forum is no longer part of the main site, however, we have to monitor new post and comments still coming in to make sure they are suitable to the sites intended visitors which is Orthodox Jewish and Kosher site visitors… This type of audience will not be happy to find links to sites containing indecent images, etc.

    I could not figure out how to change the password. It did not work using the “Forgot Password” link from the front end.

    So I just want to say thank you for High Corral for posting this tip on how to change the Admin password by running this Query directly from the SQL database using phpMyAdmin.

  3. Scott Stanger says:

    I am glad I was able to help!

  4. Alex says:

    Yes, it works with little change.
    it should be `salt` not `user`.`salt` as written in the query. otherwise it shows error

Leave a Reply

Your email address will not be published. Required fields are marked *