overzone - 2011-10-10

Maybe this lines in php can help you..

<?php
//to kill it
$output = shell_exec('pkill voipmonitor');
echo "<pre>$output</pre>";
?>
//to start it...
if (isset ($_POST['start']))
{
$output=shell_exec('voipmonitor --config-file /etc/voipmonitor.conf --pid-file /var/run/voipmonitor.pid');
}