Admin area: Modify HostBill admin password using SQL

If you've ever forgot your password and password reminder is not working for you (because for example you didn't changed default admin email address) - nothing to worry about - you can still change it in HostBill database.

To change your password using SQL:

  1. Login to your HostBill mysql database (for ex. using PhpMyAdmin tool)
  2. Browse to hb_admin_access table
  3. Update and perform SQL Query below:
UPDATE hb_admin_access SET `password`=MD5('mynewadminpassword') WHERE username='admin';