-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserverstatus.php
More file actions
136 lines (106 loc) · 3.7 KB
/
serverstatus.php
File metadata and controls
136 lines (106 loc) · 3.7 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
#################################################################
## WHMX Billing system for cPanel / WHM ##
##-------------------------------------------------------------##
## Version: 1.00 - ENVATO MARKET ##
##-------------------------------------------------------------##
## Author: Gianck Luiz obviosistemas@gmail.com ##
##-------------------------------------------------------------##
## Copyright ©2016 . All rights reserved. ##
##-------------------------------------------------------------##
#################################################################
session_start();
ob_start();
require_once("adm/config/conexao.class.php");
require_once("adm/config/crud.class.php");
require_once("adm/config/mega.class.php");
include_once("adm/config/common.php"); // Language
$con = new conexao();
$con->connect();
$dbconfig = mysql_query("SELECT * FROM config WHERE id = '1'");
$config = mysql_fetch_array($dbconfig);
$thema = $config['thema'];
use megaphp\view\MVC;
$tpl = new MVC("theme/$thema/serverstatus.html");
$tpl->addFile("NAVBAR", "theme/$thema/inc/navbar.html");
$tpl->addFile("DEMO", "theme/$thema/inc/demo.html");
$tpl->addFile("FOOTER", "theme/$thema/inc/footer.html");
// SESSION FOR ACCOUNTS
//LOGADO
if ( !isset($_SESSION['id']) ){
$tpl->block("BLOCK_NAO_LOGADO");
} else {
$idbase = $_SESSION['id'];
$cslogin = mysql_query("SELECT * FROM customers WHERE id = + $idbase");
$logado = mysql_fetch_array($cslogin);
$tpl->USER_NAME = $logado['name'];
$tpl->block("CHAT_LOGIN");
$tpl->block("BLOCK_LOGADO");
}
$querysr = mysql_query("SELECT * FROM servers order by id DESC");
while($srv = mysql_fetch_array($querysr)){
$srvon = $srv['ip'];
$tpl->SERVER = $srv['server'];
$buh = strtok( exec( "cat /proc/uptime" ), "." );
$days = sprintf( "%2d", ($buh/(3600*24)) );
$hours = sprintf( "%2d", ( ($buh % (3600*24)) / 3600) );
$min = sprintf( "%2d", ($buh % (3600*24) % 3600)/60 );
$sec = sprintf( "%2d", ($buh % (3600*24) % 3600)%60 );
$tpl->UPTIME = "$days days, $hours hours, $min minutes, $sec seconds";
$fp = @fsockopen($srvon, 80, $errno, $errstr, 1);
if($fp >= 1){
$tpl->CPANEL = 'success';
$tpl->STATUS_CPANEL = '80';
}else{
$tpl->TD = 'danger';
$tpl->STATUS = '80';
}
$fpb = @fsockopen($srvon, 21, $errno, $errstr, 1);
if($fpb >= 1){
$tpl->FTP = 'success';
$tpl->STATUS_FTP = '21';
}else{
$tpl->FTP = 'danger';
$tpl->STATUS_FTP = '21';
}
$fpc = @fsockopen($srvon, 25, $errno, $errstr, 1);
if($fpc >= 1){
$tpl->SMTP = 'success';
$tpl->STATUS_SMTP = '25';
}else{
$tpl->SMTP = 'danger';
$tpl->STATUS_SMTP = '25';
}
$fpd = @fsockopen($srvon, 3306, $errno, $errstr, 1);
if($fpd >= 1){
$tpl->MYSQL = 'success';
$tpl->STATUS_MYSQL = '3306';
}else{
$tpl->MYSQL = 'danger';
$tpl->STATUS_MYSQL = '3306';
}
$fpd = @fsockopen($srvon, 443, $errno, $errstr, 1);
if($fpd >= 1){
$tpl->SSL = 'success';
$tpl->STATUS_SSL = '443';
}else{
$tpl->SSL = 'danger';
$tpl->STATUS_SSL = '443';
}
$fpe = @fsockopen($srvon, 21, $errno, $errstr, 1);
if($fpe >= 1){
$tpl->SSH = 'success';
$tpl->STATUS_SSH = '21';
}else{
$tpl->SSH = 'danger';
$tpl->STATUS_SSH = '21';
}
$tpl->block("BLOCK_SERVERS");
}
$tpl->BASE = $config['base'];
$tpl->TITLE = $config['title'];
$tpl->COMPANY = $config['company'];
$tpl->PAGELANG = basename($_SERVER['PHP_SELF']);
// SHOW TPL
$tpl->show();
?>