Merge branch '2.0' into 'master'
custom headercolours See merge request !11
This commit is contained in:
commit
4354a998c0
26
Update.bat
26
Update.bat
@ -8,6 +8,9 @@ CACLS config.php /e /p everyone:f
|
|||||||
CACLS Update.bat /e /p everyone:f
|
CACLS Update.bat /e /p everyone:f
|
||||||
CACLS replace.vbs /e /p everyone:f
|
CACLS replace.vbs /e /p everyone:f
|
||||||
ICACLS .git /grant:r "NT AUTHORITY\NETWORKSERVICE":(OI)(CI)RXW /T
|
ICACLS .git /grant:r "NT AUTHORITY\NETWORKSERVICE":(OI)(CI)RXW /T
|
||||||
|
ICACLS config.php /grant:r "NT AUTHORITY\NETWORKSERVICE":(OI)(CI)RXW /T
|
||||||
|
ICACLS Update.bat /grant:r "NT AUTHORITY\NETWORKSERVICE":(OI)(CI)RXW /T
|
||||||
|
ICACLS replace.vbs /grant:r "NT AUTHORITY\NETWORKSERVICE":(OI)(CI)RXW /T
|
||||||
echo Permissions Updated
|
echo Permissions Updated
|
||||||
|
|
||||||
@ECHO OFF
|
@ECHO OFF
|
||||||
@ -241,6 +244,25 @@ findstr "KWorldEnabled" config.php >nul 2>&1
|
|||||||
goto END
|
goto END
|
||||||
:END
|
:END
|
||||||
|
|
||||||
|
rem widgetcolour
|
||||||
|
findstr "widgetcolour" config.php >nul 2>&1
|
||||||
|
if errorlevel 1 goto ONE
|
||||||
|
if errorlevel 0 goto ZERO
|
||||||
|
goto END
|
||||||
|
:ZERO
|
||||||
|
echo widgetcolour Already Updated
|
||||||
|
goto END
|
||||||
|
:ONE
|
||||||
|
echo ^<?php >>config.php
|
||||||
|
echo //// widgetcolour Settings >> config.php
|
||||||
|
echo $widgetcolour = "#000000"; >> config.php
|
||||||
|
echo //// >> config.php
|
||||||
|
echo ^?^> >> config.php
|
||||||
|
echo WidgetColour Updated
|
||||||
|
goto END
|
||||||
|
:END
|
||||||
|
|
||||||
|
|
||||||
rem Update Version
|
rem Update Version
|
||||||
findstr "localversion" config.php >nul 2>&1
|
findstr "localversion" config.php >nul 2>&1
|
||||||
if errorlevel 1 goto ONE
|
if errorlevel 1 goto ONE
|
||||||
@ -261,8 +283,8 @@ findstr "localversion" config.php >nul 2>&1
|
|||||||
goto END
|
goto END
|
||||||
:END
|
:END
|
||||||
:ONE
|
:ONE
|
||||||
cscript replace.vbs "config.php" "2.0" "2.1"
|
cscript replace.vbs "config.php" "2.1" "2.2"
|
||||||
echo Version Updated to 2.1
|
echo Version Updated to 2.2
|
||||||
goto END
|
goto END
|
||||||
:END
|
:END
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
require "configs_services.php";
|
require "configs_services.php";
|
||||||
|
|
||||||
# Start a variable to contain Service Status.
|
# Start a variable to contain Service Status.
|
||||||
$serverStatus = "<table id='servicestable' width='190' border='0' cellspacing='0' cellpadding='1'><thead><tr onclick='togglebodyServices()' BGCOLOR='#0066FF'><th style='text-align: left;'><font color='white'>Service</font></th><th style='text-align: left;'><font color='white'>Status</font></th></tr></thead>";
|
$serverStatus = "<table id='servicestable' width='190' border='0' cellspacing='0' cellpadding='1'><thead><tr onclick='togglebodyServices()' ><th style='text-align: left;'><font color='white'>Service</font></th><th style='text-align: left;'><font color='white'>Status</font></th></tr></thead>";
|
||||||
|
|
||||||
# Process all services montiored.
|
# Process all services montiored.
|
||||||
foreach( $configs['servicesKloud'] as $serviceName => $servicePort )
|
foreach( $configs['servicesKloud'] as $serviceName => $servicePort )
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<table width='275' cellspacing='0' cellpadding='1'>
|
<table width='275' cellspacing='0' cellpadding='1'>
|
||||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#0066FF'>
|
<tr onclick="toggleNextRow(this)">
|
||||||
<th style='text-align: left;'><font color='white'>Time</font></th>
|
<th style='text-align: left;'><font color='white'>Time</font></th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -21,6 +21,8 @@
|
|||||||
<br />
|
<br />
|
||||||
Custom Background Colour:<input class="color" name="backgroundcolor" value="<?php echo $custombackground ?>"</td>
|
Custom Background Colour:<input class="color" name="backgroundcolor" value="<?php echo $custombackground ?>"</td>
|
||||||
<br />
|
<br />
|
||||||
|
Widget Header Colour:<input class="color" name="widgetcolor" value="<?php echo $widgetcolour ?>"</td>
|
||||||
|
<br />
|
||||||
<br />
|
<br />
|
||||||
KWorld Enabled: <input name="kworldenabled" id="id" type="checkbox" <?php if($KWorldEnabled > "0") echo "checked=checked; "; ?> /><br />
|
KWorld Enabled: <input name="kworldenabled" id="id" type="checkbox" <?php if($KWorldEnabled > "0") echo "checked=checked; "; ?> /><br />
|
||||||
<br />
|
<br />
|
||||||
@ -37,11 +39,11 @@
|
|||||||
<br />
|
<br />
|
||||||
Show Version : <input name="showversion" id="id" type="checkbox" <?php if($showversion > "0") echo "checked=checked; "; ?> /> (<?php echo $localversion ?>)<br />
|
Show Version : <input name="showversion" id="id" type="checkbox" <?php if($showversion > "0") echo "checked=checked; "; ?> /> (<?php echo $localversion ?>)<br />
|
||||||
<br />
|
<br />
|
||||||
Widget Background: <input name="widgetvisible" id="id" type="checkbox" <?php if($widgetbackgroud > "0") echo "checked=checked; "; ?> /><br />
|
Icon Background: <input name="widgetvisible" id="id" type="checkbox" <?php if($widgetbackgroud > "0") echo "checked=checked; "; ?> /><br />
|
||||||
Custom Widget Background: <input name="customwidget" id="id" type="checkbox" <?php if($customwidgetbackgroud > "0") echo "checked=checked; "; ?> /><br />
|
Custom Icon Background: <input name="customwidget" id="id" type="checkbox" <?php if($customwidgetbackgroud > "0") echo "checked=checked; "; ?> /><br />
|
||||||
Background Colour: <input class="color" name="widgetbackgroudcolour" value="<?php echo $widgetbackgroudcolour ?>"</td>
|
Custom Icon Background Colour: <input class="color" name="widgetbackgroudcolour" value="<?php echo $widgetbackgroudcolour ?>"</td>
|
||||||
<br />
|
<br />
|
||||||
Reset Widgets : <input id="def_button" type="button" value="Set to Default" onclick="myfunction()"><br />
|
Reset Icon Positions : <input id="def_button" type="button" value="Set to Default" onclick="myfunction()"><br />
|
||||||
<br />
|
<br />
|
||||||
<input type="submit" name="submit" value="Update" />
|
<input type="submit" name="submit" value="Update" />
|
||||||
</form>
|
</form>
|
||||||
|
@ -16,6 +16,7 @@ $widgetbackgroud1 = $_POST['widgetvisible'];
|
|||||||
$customwidgetbackgroud1 = $_POST['customwidget'];
|
$customwidgetbackgroud1 = $_POST['customwidget'];
|
||||||
$widgetbackgroudcolour1 = $_POST['widgetbackgroudcolour'];
|
$widgetbackgroudcolour1 = $_POST['widgetbackgroudcolour'];
|
||||||
$KWorldEnabled1 = $_POST['kworldenabled'];
|
$KWorldEnabled1 = $_POST['kworldenabled'];
|
||||||
|
$widgetcolor1 = $_POST['widgetcolor'];
|
||||||
|
|
||||||
//
|
//
|
||||||
$fl='../config.php';
|
$fl='../config.php';
|
||||||
@ -29,6 +30,7 @@ $content = preg_replace( '/\$base = \"(.*?)\";/', '$base = "'.$yb.'";', $conte
|
|||||||
$content = preg_replace( '/\$user = \"(.*?)\";/', '$user = "'.$user1.'";', $content);
|
$content = preg_replace( '/\$user = \"(.*?)\";/', '$user = "'.$user1.'";', $content);
|
||||||
$content = preg_replace( '/\$pass = \"(.*?)\";/', '$pass = "'.$pass1.'";', $content);
|
$content = preg_replace( '/\$pass = \"(.*?)\";/', '$pass = "'.$pass1.'";', $content);
|
||||||
$content = preg_replace( '/\$custombackground = \"(.*?)\";/', '$custombackground = "#'.$backgroundcolor1.'";', $content);
|
$content = preg_replace( '/\$custombackground = \"(.*?)\";/', '$custombackground = "#'.$backgroundcolor1.'";', $content);
|
||||||
|
$content = preg_replace( '/\$widgetcolour = \"(.*?)\";/', '$widgetcolour = "#'.$widgetcolor1.'";', $content);
|
||||||
// version Settings
|
// version Settings
|
||||||
if (empty($showversion1)) {
|
if (empty($showversion1)) {
|
||||||
$content = preg_replace( '/\$showversion = \"(.*?)\";/', '$showversion = "0";', $content);
|
$content = preg_replace( '/\$showversion = \"(.*?)\";/', '$showversion = "0";', $content);
|
||||||
|
13
css/static.php
Normal file
13
css/static.php
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
header("Content-type: text/css; charset: UTF-8");
|
||||||
|
?>
|
||||||
|
<?php include '../config.php';?>
|
||||||
|
|
||||||
|
table,th,td { }
|
||||||
|
|
||||||
|
tr { background-color:<?php echo $widgetcolour; ?>;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
@ -30,8 +30,8 @@ require_once 'DiskStatus.class.php';
|
|||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
<tr onclick="toggleNextRow(this)" >
|
||||||
<th style='text-align: left;'><font color='#0066FF'><?php echo $drive1;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
<th style='text-align: left; background-color:#FFFFFF;'><font color='#0066FF'><?php echo $drive1;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="hiddenRow">
|
<tr class="hiddenRow">
|
||||||
<td bgcolor='#FFFFFF'>
|
<td bgcolor='#FFFFFF'>
|
||||||
|
@ -31,7 +31,7 @@ require_once 'DiskStatus.class.php';
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||||
<th style='text-align: left;'><font color='#0066FF'><?php echo $drive2;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
<th style='text-align: left; background-color:#FFFFFF;'><font color='#0066FF'><?php echo $drive2;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||||
</tr>
|
</tr>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="hiddenRow">
|
<tr class="hiddenRow">
|
||||||
|
@ -31,7 +31,7 @@ require_once 'DiskStatus.class.php';
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||||
<th style='text-align: left;'><font color='#0066FF'><?php echo $drive3;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
<th style='text-align: left; background-color:#FFFFFF;'><font color='#0066FF'><?php echo $drive3;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="hiddenRow">
|
<tr class="hiddenRow">
|
||||||
<td bgcolor='#FFFFFF'>
|
<td bgcolor='#FFFFFF'>
|
||||||
|
@ -31,7 +31,7 @@ require_once 'DiskStatus.class.php';
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||||
<th style='text-align: left;'><font color='#0066FF'><?php echo $drive4;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
<th style='text-align: left; background-color:#FFFFFF;'><font color='#0066FF'><?php echo $drive4;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="hiddenRow">
|
<tr class="hiddenRow">
|
||||||
<td bgcolor='#FFFFFF'>
|
<td bgcolor='#FFFFFF'>
|
||||||
|
@ -31,7 +31,7 @@ require_once 'DiskStatus.class.php';
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||||
<th style='text-align: left;'><font color='#0066FF'><?php echo $drive5;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
<th style='text-align: left; background-color:#FFFFFF;'><font color='#0066FF'><?php echo $drive5;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="hiddenRow">
|
<tr class="hiddenRow">
|
||||||
<td bgcolor='#FFFFFF'>
|
<td bgcolor='#FFFFFF'>
|
||||||
|
@ -31,7 +31,7 @@ require_once 'DiskStatus.class.php';
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||||
<th style='text-align: left;'><font color='#0066FF'><?php echo $drive6;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
<th style='text-align: left; background-color:#FFFFFF;'><font color='#0066FF'><?php echo $drive6;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="hiddenRow">
|
<tr class="hiddenRow">
|
||||||
<td bgcolor='#FFFFFF'>
|
<td bgcolor='#FFFFFF'>
|
||||||
|
@ -31,7 +31,7 @@ require_once 'DiskStatus.class.php';
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
<tr onclick="toggleNextRow(this)" BGCOLOR='#FFFFFF'>
|
||||||
<th style='text-align: left;'><font color='#0066FF'><?php echo $drive7;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
<th style='text-align: left; background-color:#FFFFFF;'><font color='#0066FF'><?php echo $drive7;?>\<?= $freeSpaceC ?> (of <?= $totalSpaceC ?>)</font></th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="hiddenRow">
|
<tr class="hiddenRow">
|
||||||
<td bgcolor='#FFFFFF'>
|
<td bgcolor='#FFFFFF'>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr onclick='togglebody()' BGCOLOR='#0066FF'>
|
<tr onclick='togglebody()'>
|
||||||
<th style='text-align: left;'><font color='white'>Drive Space</font></th>
|
<th style='text-align: left;'><font color='white'>Drive Space</font></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
@ -1,5 +1,6 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/static.css" />
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
|
||||||
<style>
|
<style>
|
||||||
.hiddenRow { display: none; }
|
.hiddenRow { display: none; }
|
||||||
@ -13,7 +14,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<?php include '../config.php';?>
|
<?php include '../config.php';?>
|
||||||
<table width='275' border='0' cellspacing='0' cellpadding='0'>
|
<table width='275' border='0' cellspacing='0' cellpadding='0'>
|
||||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#0066FF'>
|
<tr onclick="toggleNextRow(this)">
|
||||||
<th style='text-align: left;'><font color='white'>KKnowledge</font></th>
|
<th style='text-align: left;'><font color='white'>KKnowledge</font></th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="hiddenRow">
|
<tr class="hiddenRow">
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<table width='275' border='0' cellspacing='0' cellpadding='0'>
|
<table width='275' border='0' cellspacing='0' cellpadding='0'>
|
||||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#0066FF'>
|
<tr onclick="toggleNextRow(this)" >
|
||||||
<th style='text-align: left;'><font color='white'>Latest Klips</font></th>
|
<th style='text-align: left;'><font color='white'>Latest Klips</font></th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="hiddenRow">
|
<tr class="hiddenRow">
|
||||||
|
@ -12,12 +12,12 @@
|
|||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<table width='275' cellspacing='0' cellpadding='1'>
|
<table width='275' cellspacing='0' cellpadding='1'>
|
||||||
<tr onclick="toggleNextRow(this)" BGCOLOR='#0066FF'>
|
<tr onclick="toggleNextRow(this)">
|
||||||
<th style='text-align: left;'><font color='white'>Konvos Status</font></th>
|
<th style='text-align: left;'><font color='white'>Konvos Status</font></th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="hiddenRow">
|
<tr class="hiddenRow">
|
||||||
<td BGCOLOR='#FFFFFF'>
|
<td BGCOLOR='#FFFFFF'>
|
||||||
<table id='konvostable' width='275' border='0' cellspacing='0' cellpadding='1'><thead><tr onclick='togglebodyServers()' BGCOLOR='#0066FF'><th style='text-align: left;'><font color='white'>User</font></th><th style='text-align: left;'><font color='white'>Status</font></th></tr></thead>
|
<table id='konvostable' width='275' border='0' cellspacing='0' cellpadding='1'><thead><tr onclick='togglebodyServers()' ><th style='text-align: left;'><font color='white'>User</font></th><th style='text-align: left;'><font color='white'>Status</font></th></tr></thead>
|
||||||
<tbody><td BGCOLOR='#FFFFFF'>Karl</td><td BGCOLOR='#FFFFFF'><?php require "http://konvos.cf:5280/status/karl/html"; ?></td></tr>
|
<tbody><td BGCOLOR='#FFFFFF'>Karl</td><td BGCOLOR='#FFFFFF'><?php require "http://konvos.cf:5280/status/karl/html"; ?></td></tr>
|
||||||
<tbody><td BGCOLOR='#FFFFFF'>Duly</td><td BGCOLOR='#FFFFFF'><?php require "http://konvos.cf:5280/status/duly/html"; ?></td></tr>
|
<tbody><td BGCOLOR='#FFFFFF'>Duly</td><td BGCOLOR='#FFFFFF'><?php require "http://konvos.cf:5280/status/duly/html"; ?></td></tr>
|
||||||
<tbody><td BGCOLOR='#FFFFFF'>Darren</td><td BGCOLOR='#FFFFFF'><?php require "http://konvos.cf:5280/status/darren/html"; ?></td></tr>
|
<tbody><td BGCOLOR='#FFFFFF'>Darren</td><td BGCOLOR='#FFFFFF'><?php require "http://konvos.cf:5280/status/darren/html"; ?></td></tr>
|
||||||
|
1
left.php
1
left.php
@ -4,6 +4,7 @@
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/static.php" />
|
||||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
||||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
||||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
||||||
|
11
right.php
11
right.php
@ -4,6 +4,7 @@
|
|||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/static.php" />
|
||||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
||||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
||||||
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
||||||
@ -105,11 +106,11 @@ if ($customfeed3visible > "0") {
|
|||||||
<table id='themetable' width='275' border="0" cellpadding="1" cellspacing="0">
|
<table id='themetable' width='275' border="0" cellpadding="1" cellspacing="0">
|
||||||
<thead>
|
<thead>
|
||||||
<tr onclick='togglebodytheme()'>
|
<tr onclick='togglebodytheme()'>
|
||||||
<td bgcolor="#0066FF" style="text-align: left;"><font color="white"><b>Theme</b></font></td>
|
<td style="text-align: left;"><font color="white"><b>Theme</b></font></td>
|
||||||
<td bgcolor="#0066FF"> </td>
|
<td > </td>
|
||||||
<td bgcolor="#0066FF"> </td>
|
<td > </td>
|
||||||
<td bgcolor="#0066FF"> </td>
|
<td > </td>
|
||||||
<td bgcolor="#0066FF"> </td>
|
<td > </td>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody style= 'display:none' border="1">
|
<tbody style= 'display:none' border="1">
|
||||||
|
@ -29,7 +29,7 @@ require "ss_configs_servers.php";
|
|||||||
|
|
||||||
# Start a variable to contain Service Status.
|
# Start a variable to contain Service Status.
|
||||||
if ($serverstatusvisible > "0") {
|
if ($serverstatusvisible > "0") {
|
||||||
$serverStatus = "<table id='serverstable' width='190' border='0' cellspacing='0' cellpadding='1'><thead><tr onclick='togglebodyServers()' BGCOLOR='#0066FF'><th style='text-align: left;'><font color='white'>Server</font></th><th style='text-align: left;'><font color='white'>Status</font></th></tr></thead>";
|
$serverStatus = "<table id='serverstable' width='190' border='0' cellspacing='0' cellpadding='1'><thead><tr onclick='togglebodyServers()'><th style='text-align: left;'><font color='white'>Server</font></th><th style='text-align: left;'><font color='white'>Status</font></th></tr></thead>";
|
||||||
}
|
}
|
||||||
|
|
||||||
# Process all services1 montiored.
|
# Process all services1 montiored.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
//// KLANDING VERSION
|
//// KLANDING VERSION
|
||||||
$remoteversion = "2.1"; //
|
$remoteversion = "2.2"; //
|
||||||
?>
|
?>
|
Loading…
x
Reference in New Issue
Block a user