summaryrefslogtreecommitdiffstats
path: root/usr/local/www
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-02-22 20:18:22 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-02-22 20:18:22 +0000
commitb5b351be09f2d778c45f0aef2f92d547dea58320 (patch)
treebe3f1e920bd9a5adde9baac06e5d427f91b9ef46 /usr/local/www
parent87f9a64c019603f414c5156d9a68bc7408244e63 (diff)
downloadpfsense-b5b351be09f2d778c45f0aef2f92d547dea58320.zip
pfsense-b5b351be09f2d778c45f0aef2f92d547dea58320.tar.gz
Unbreak status -> queues
Ticket #824
Diffstat (limited to 'usr/local/www')
-rwxr-xr-xusr/local/www/status_queues.php18
1 files changed, 8 insertions, 10 deletions
diff --git a/usr/local/www/status_queues.php b/usr/local/www/status_queues.php
index 22fd1f2..f86be3d 100755
--- a/usr/local/www/status_queues.php
+++ b/usr/local/www/status_queues.php
@@ -1,3 +1,4 @@
+#!/usr/local/bin/php
<?php
/* $Id$ */
/*
@@ -31,7 +32,7 @@
require("guiconfig.inc");
if($_GET['reset'] <> "") {
- mwexec("killall -9 pfctl pfctl");
+ mwexec("killall pfctl pfctl");
Header("Location: status_queues.php");
exit;
}
@@ -50,7 +51,7 @@ foreach($pfctl_vsq_array as $pfctl) {
$a_queues[] = $match_array[1][0];
}
-$pgtitle = "Status: Traffic Shaper: Queues";
+$pgtitle = "Status: Traffic shaper: Queues";
include("head.inc");
?>
@@ -148,12 +149,7 @@ While(!Connection_Aborted()) {
echo "<script language='javascript'>\n";
- /* Since pps can be 0, let's not divide by zero */
- if ($total_packets_s == 0) {
- $packet_s = round(400 * (1 - $packet_sampled / $total_packets_s), 0);
- } else {
- $packet_s = 0;
- }
+ $packet_s = round(400 * (1 - $packet_sampled / $total_packets_s), 0);
echo "document.queue{$i}widthb.style.width='{$packet_s}px';\n";
echo "document.queue{$i}widtha.style.width='" . (400 - $packet_s) . "px';\n";
@@ -178,10 +174,12 @@ While(!Connection_Aborted()) {
echo "Redirecting to <a href=\"status_queues.php\">Queue Status</a>.<p>";
echo "<meta http-equiv=\"refresh\" content=\"1;url={$_SERVER['PHP_SELF']}\">";
mwexec("/usr/bin/killall pfctl");
+ mwexec("/usr/bin/killall pfctl php");
exit;
}
}
-mwexec("/usr/bin/killall pfctl");
+mwexec("/usr/bin/killall pfctl pfctl");
+mwexec("/usr/bin/killall pfctl php");
-?>
+?> \ No newline at end of file
OpenPOWER on IntegriCloud