Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

...

  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:
Code Block
languagetextsql
UPDATE hb_admin_access SET `password`=MD5('mynewadminpassword') WHERE username='admin';

...