| 
 To change the interface password from mySQL, proceed as follows:
  1. Navigate to the PBXware directory
          cd /opt/pbxware 
  2. Log in to mySQL shell
          sh/mysql 
  3. Select database and table
          mysql> use sitemanager_global;         mysql> select * from users;
  4. Change the interface password
          mysql> update users set password = md5('$YOURNEW PASSWORD') where id = 1;
  Replace $YOURNEWPASSWORD with your new password and try to log in with it.  
 |