-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstatus.php
More file actions
38 lines (37 loc) · 1.3 KB
/
status.php
File metadata and controls
38 lines (37 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
$pageName = "status.php";
include "inc.config.php";
error_reporting($reportLevel);
include "inc.common.php";
include "inc.mysqli.conn.php";
include "inc.requests.php";
?>
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'>
<html>
<head>
<meta http-equiv='pragma' content='no-cache'>
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='content-type' content='text/html; charset=<?php echo $siteCharSet; ?>'>
<title>VM LiveView Lite (Server Status)</title>
<link rel='stylesheet' type='text/css' href='<?php echo $siteURL; ?>/styles.css'>
</head>
<body>
<div align='center'>
<div id='statusData'></div>
<script src='<?php echo $siteURL; ?>/css.statusdata.js' type='text/javascript'></script>
<script type='text/javascript'>
if(requestStatus != 1){
document.write('<div class=\'break4\'><\/div>' +
'<div>' +
'Could not load status data ... possible reasons:' +
'<br><br>' +
'Incompatible browser.' +
'<br><br>' +
'For best results try an up-to-data version of Firefox, Chrome, IE etc. !' +
'<\/div>');
}
</script>
</div>
</body>
</html>