Versions Compared

Key

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

Login into HostBill form your website

...

With HostBill, you can create login form to put on your website:

  1. Go to Settings → Modules
  2. In module search box type in: Integration
  3. Activate module HTML Integration
  4. From Extras menu pick HTML Integration
  5. Copy code of login form and place it on your website.

Staff Auto-Logout Time

...

As a a security measure, HostBill automatically logs-out staff members after "30 minutes" of inactivity time. It is not possible to change this setting.

Automatic logout after login problem

...

If immediately after logging in into HostBill admin area you're being logged out, it probably means that your server cannot keep session data properly.

Image RemovedImage Added

It can be caused by various reasons, please check that:

  • PHP can write to temp folder (usually /tmp) to store session data
  • your /tmp partition is not running out of space
  • if you're using Interworx with jails, the session.save_path configuration in php.ini needs to point to directory with write permissions ie: doing chmod -R 333 /session_save_path solves the problem.
  • To to be sure, try clearing browser cache , using different browseror using different browser

Lockout Resolve with SQL

...

If you find yourself locked out of admin area (unable to log-in), there are at least three potential causes of this problem:

  • Your IP has been banned due to excessive login failures
  • You/your collegue created security rule preventing your IP from log-in
  • Your PHP is unable to store sessions

If you have MySQL access you can do following:

  • Flush failed logins table, using following query:
Code Block
languagesql
 TRUNCATE TABLE hb_banned_ip;
  • Clear admin-defined security rules, using following query:
Code Block
languagesql
 DELETE FROM hb_security_rules WHERE target='admin';
  • Make sure your php can store sessions.