21 lines
433 B
PHP
21 lines
433 B
PHP
<?php
|
|
/*
|
|
* Component of the status module
|
|
*/
|
|
|
|
//If your server runs windows, please put the location of the pagefile
|
|
$pagefilelocation = "C:\pagefile.sys";
|
|
|
|
//Enable or Disable each module here. Leave blank to disable, 1 to enable.
|
|
//CPU Load
|
|
$modulecpu = "1";
|
|
//Memory Load
|
|
$modulememory = "1";
|
|
//Storage Space
|
|
$modulestorage = "1";
|
|
//System Uptime
|
|
$modulesystemuptime = "1";
|
|
// Task information out
|
|
$modulesystemtasks = "1";
|
|
|
|
?>
|