This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Open Hardware Monitor Report | |
-------------------------------------------------------------------------------- | |
Version: 0.8.0.3 | |
-------------------------------------------------------------------------------- | |
Common Language Runtime: 4.0.30319.42000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// $df contains the number of bytes available on "/" | |
$df = disk_free_space("/"); | |
// On Windows: | |
$df_c = disk_free_space("C:"); | |
$df_d = disk_free_space("Z:"); | |
echo "df: " . $df; | |
echo "<br>"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$fso = new COM('Scripting.FileSystemObject'); | |
$D = $fso->Drives; | |
$type = array("Unknown","Removable","Fixed","Network","CD-ROM","RAM Disk"); | |
foreach($D as $d ){ | |
$dO = $fso->GetDrive($d); | |
$s = ""; | |
if($dO->DriveType == 3){ | |
$n = $dO->Sharename; | |
}else if($dO->IsReady){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="../css/main.css"> | |
<style type="text/css"> | |
a { | |
color: black; | |
} | |
#phpinfo { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Monitorr CSS file | |
https://github.com/Monitorr/Monitorr | |
*/ | |
/* @import url(https://fonts.googleapis.com/css?family=Roboto:400); */ | |
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css); | |
body { | |
opacity: 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/// MONITORR /// | |
// https://github.com/monitorr/Monitorr | |
/** | |
* This script uses CURL to check if given HOST is serving a webpage. | |
* If CURL fails, use a PING (pfsockopen) function to check if anything is listening at given URL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/// MONITORR /// | |
// https://github.com/monitorr/Monitorr | |
/** | |
* This script uses CURL to check if given HOST is serving a webpage. | |
* If CURL fails, use a PING (pfsockopen) function to check if anything is listening at given URL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/// MONITORR /// | |
// https://github.com/monitorr/Monitorr | |
/** | |
* This script uses CURL to check if given HOST is serving a webpage. | |
* If CURL fails, use a PING (pfsockopen) function to check if anything is listening at given URL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Logarr main JS script | |
// https://github.com/Monitorr | |
// Set styles for BlockUI overlays in /assets/js/jquery.blockUI.js | |
function refreshblockUI() { | |
$.growlUI('Updating logs...'); | |
setTimeout(function () { | |
refresh(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<!-- | |
LOGARR | |
by @seanvree, @wjbeckett, and @jonfinley | |
https://github.com/Monitorr | |
--> | |
<head> |