Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suggested Pull Request #3

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,23 @@ FeePBX Call Status
Forked from http://sysadminman.net/blog/2013/asterisk-outbound-call-status-page-5600 and modified for FreePBX system running version 2.9 or higher.
This is a simple HTML page that displays all active calls on a FreePBX system. This is not a FreePBX module, and does not require system credentials to view.

Note that I'm weird about dashes in directories and filenames, so I removed the original developer's dashes from call-status making it callstatus. Small detail, but it might trip you up if you weren't aware of it.

## Requirements
* FreePBX version 2.9 or later
* Tested with Asterisk 1.8 and 11

## Installation
* On a FreePBX system, download the files to the folder `[webroot]/call-status`
* On a FreePBX system, download the files to the folder `[webroot]/callstatus`
* chown and chmod folder and files as necessary
* In a browser, navigate to `http://<ipaddress>/call-status`.
* In a browser, navigate to `http://<ipaddress>/callstatus`.
* To add to the FreePBX System Status dashboard, modify the `[webroot]/admin/modules/dashboard/page.index.php` file according to the example included here under `httproot...`

As an example, to install on a Centos based distro such as PIAF or the FreePBX distro, you might use the following commands:
```
cd /var/www/html
git clone https://github.com/POSSA/freepbx-Call_Status.git call-status
chown -R asterisk:asterisk /var/www/html/call-status
git clone https://github.com/shdwlynx/freepbx-Call_Status.git callstatus
chown -R asterisk:asterisk /var/www/html/callstatus
```
## License
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.
Expand Down
Loading