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
|
--- a/dist/add-ons/snmp_monitoring/class.litespeed_snmp_bridge.php
+++ b/dist/add-ons/snmp_monitoring/class.litespeed_snmp_bridge.php
@@ -1,4 +1,4 @@
-<?
+<?php
/*----------------------------------------
LiteSpeed_Stats to SNMP bridge. Relay stats to SNMPD.
--- a/dist/add-ons/snmp_monitoring/class.litespeed_stats.php
+++ b/dist/add-ons/snmp_monitoring/class.litespeed_stats.php
@@ -1,4 +1,4 @@
-<?
+<?php
/*----------------------------------------
LiteSpeed_Stats class and subclasses. Parse Real-Time data for LiteSpeed Products
--- a/dist/add-ons/snmp_monitoring/sample.php
+++ b/dist/add-ons/snmp_monitoring/sample.php
@@ -1,4 +1,4 @@
-<?
+<?php
/*--------------------------------
assuming following entry in /etc/snmp/snmpd.conf
--- a/dist/admin/html.open/login.php
+++ b/dist/admin/html.open/login.php
@@ -1,4 +1,4 @@
-<?
+<?php
require_once('view/inc/global.php');
@@ -31,7 +31,9 @@
});
</script>
-<? } ?>
+<?php
+}
+?>
<div class="container">
<div style="margin-top:50px"></div>
@@ -40,7 +42,7 @@
<form action="login.php" id="login" method="post" class="smart-form client-form" novalidate="novalidate">
<header><div class="text-center"><img src="/res/img/product_logo.gif" alt="LiteSpeed"></div></header>
<fieldset>
- <?
+ <?php
if ($msg != '') {
echo "<section><div class=\"note\">$msg</div></section>";
}
--- a/dist/admin/html.open/lib/jCryption.php
+++ b/dist/admin/html.open/lib/jCryption.php
@@ -394,7 +394,7 @@
$bits_n = $bits_cnt % 8;
do {
$str = '';
- mt_srand($this->_makeSeed());
+ mt_srand((int)$this->_makeSeed());
for ($i = 0; $i < $bytes_n; $i++) {
$str .= chr(sha1(mt_rand() * microtime()) & 0xff);
}
--- a/dist/admin/html.open/lib/ows/RealTimeStats.php
+++ b/dist/admin/html.open/lib/ows/RealTimeStats.php
@@ -224,6 +224,9 @@
$filter = UIBase::GrabGoodInput("request", "vh_filter", "string") ;
$sort = UIBase::GrabGoodInput("request", "vh_sort", "int") ;
+ $sortDesc1 = array();
+ $sortAsc2 = array();
+
$vhosts = array() ;
$m = array() ;
$found = preg_match_all("/REQ_RATE \[(.+)\]: REQ_PROCESSING: ([0-9]+), REQ_PER_SEC: ([0-9\.]+), TOT_REQS: ([0-9]+)/i", $this->_rawdata, $m) ;
|