2009-08-19 09:12:58 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* monstart.php
|
|
|
|
* to display the web page for the command "monstart" and the command "monstop" for the selected plugins
|
|
|
|
* the link looks like "monitor/monstart.php?name=rmcmon".
|
|
|
|
*/
|
2009-09-01 20:25:18 +00:00
|
|
|
if(!isset($TOPDIR)) { $TOPDIR="..";}
|
2009-08-19 09:12:58 +00:00
|
|
|
|
|
|
|
require_once "$TOPDIR/lib/security.php";
|
|
|
|
require_once "$TOPDIR/lib/functions.php";
|
|
|
|
require_once "$TOPDIR/lib/display.php";
|
|
|
|
require_once "$TOPDIR/lib/monitor_display.php";
|
|
|
|
|
|
|
|
$name = $_REQUEST['name'];
|
|
|
|
|
|
|
|
//echo $name;
|
|
|
|
|
2009-12-11 02:58:43 +00:00
|
|
|
displayMapper(array('home'=>'main.php', 'monitor' =>'monitor/monlist.php', 'RMC EventLog' => ''));
|
2009-08-19 09:12:58 +00:00
|
|
|
|
2009-09-03 04:44:56 +00:00
|
|
|
//Following the "Syslog Entries" web page
|
|
|
|
displayRMCEvnetLog();
|
|
|
|
|
2009-08-19 09:12:58 +00:00
|
|
|
?>
|