Howto:DECT Graphical Real Time Display: Difference between revisions

From innovaphone wiki
Jump to navigation Jump to search
Line 31: Line 31:
You will need four php script to get this map.
You will need four php script to get this map.


The first one, named index.php, is to be called by the browser with the site ID in http GET format : for example : http:\\mysite\index.php?site=myDECTcoverage
The first one, named index.php, is to be called by the browser with the site ID in http GET format : for example : <code http>http://mysite/index.php?site=myDECTcoverage</code>


<code php>
<code php>

Revision as of 15:40, 1 March 2011

Applies To

This information applies to

  • IP1200

Build 70300.35 and earlier.


Summary

In multicell network, it's usefull to have a map of all the cells in a single view with all the sync link state in real time display.

SummaryDECTGRTD.jpg

System Requirements

For that you will need an apache server with PHP 5 at least.

You will have to activate the following extensions :

php_http, php_gd2

You must have an access to the cells from the apache server.


You must have a map of your building in jpg format with the name myDECTcoverage.jpg, and you will need a txt file with a description of each cells point with the name myDECTcoverage.txt.

=Configuration

You will need four php script to get this map.

The first one, named index.php, is to be called by the browser with the site ID in http GET format : for example : http://mysite/index.php?site=myDECTcoverage

<?php echo '<HTML><HEAD>'; echo '<META HTTP-EQUIV="refresh" content="5"; url="index.php">'; echo '</HEAD><BODY>'; echo "<img src='draw.php?site=".$_GET['site']."'/>"; echo '</BODY></html>'; ?>

Known Problems

Related Articles