Howto:License Summary

From innovaphone wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This solution is obsolete. Please use instead the TechAssist App.

Summary

Sometimes you want to have a detailed overview of PBX user licenses. In V12, the PBX only shows a global overview of available and used licenses. For an exact view, you have to look in the PBX object in the tab License. This PHP solution was initially included as a feature request in the innovaphone forum, and maintained by the community.

Thanks a lot for this. With the consent of all involved, we are now officially providing this solution.

Applies To

This information applies to

  • innovapnone PBX running V12
  • innovaphone Linux Application Platform V10

Requirements

  • Linux Application Platform (or Webserver with PHP, XML and CURL)
  • Same admin/pass combination on all PBXes

More Information

Installation

  • Download all needed files
  • Connect via SSH (putty) to your Linux Application Platform
    1. Create a new folder: mkdir /var/www/innovaphone/licsummary
    2. Upload all files to the new folder (Use SCP to upload all files via SSH, otherwise you can upload it via webdav and move the files via SSH to the correct folder)
    3. Change file permissions: chown www-data:www-data -R /var/www/innovaphone/licsummary
    4. Check access: http://x.x.x.x/licsummary

Setup

  • Edit index.php and add your custom configuration
$config = (object) array(
    'master_pbx'    => '172.16.80.233',
    'username'      => 'admin',
    'password'      => 'ip811',
);

Usage

By default, we show all users who have a license assigned. The following object types are hidden: Config template

  • Show also users without licenses
  • Check "unlicensed" licenses (takes a long time)
Licsummary.png

Troubleshooting

  • Error: PBX not reachable
Check IP/DNS in your configuration object
  • Error: Wrong user/pass for PBX
Fix Login information
Check if basic authentication is enabled

Known Problems

Download

  • Download the complete file package of scripts and files described in this article.