| Current Path : /var/www/element/data/www/vsl-gates.ru/manager/actions/ |
| Current File : /var/www/element/data/www/vsl-gates.ru/manager/actions/sysinfo.static.php |
<?php
if(IN_MANAGER_MODE!="true") die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the MODx Content Manager instead of accessing this file directly.");
if(!$modx->hasPermission('logs')) {
$e->setError(3);
$e->dumpError();
}
?>
<div class="subTitle">
<span class="right"><?php echo $_lang["view_sysinfo"]; ?></span>
</div>
<script type="text/javascript">
function viewPHPInfo() {
dontShowWorker = true; // prevent worker from being displayed
window.location.href="index.php?a=200";
};
</script>
<!-- server -->
<div class="sectionHeader">Server</div><div class="sectionBody" id="lyr2">
<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td width="150"><?php echo $_lang['modx_version']?></td>
<td width="20"> </td>
<td><b><?php echo $version ?></b><?php echo $newversiontext ?></td>
</tr>
<tr>
<td width="150"><?php echo $_lang['version_codename']?></td>
<td width="20"> </td>
<td><b><?php echo $code_name ?></b></td>
</tr>
<tr>
<td>phpInfo()</td>
<td> </td>
<td><b><a href="#" onclick="viewPHPInfo();return false;"><?php echo $_lang['view']; ?></a></b></td>
</tr>
<tr>
<td><?php echo $_lang['access_permissions']?></td>
<td> </td>
<td><b><?php echo $use_udperms==1 ? $_lang['enabled'] : $_lang['disabled']; ?></b></td>
</tr>
<tr>
<td><?php echo $_lang['servertime']?></td>
<td> </td>
<td><b><?php echo strftime('%H:%M:%S', time()); ?></b></td>
</tr>
<tr>
<td><?php echo $_lang['localtime']?></td>
<td> </td>
<td><b><?php echo strftime('%H:%M:%S', time()+$server_offset_time); ?></b></td>
</tr>
<tr>
<td><?php echo $_lang['serveroffset']?></td>
<td> </td>
<td><b><?php echo $server_offset_time/(60*60) ?></b> h</td>
</tr>
<tr>
<td><?php echo $_lang['database_name']?></td>
<td> </td>
<td><b><?php echo str_replace('`','',$dbase) ?></b></td>
</tr>
<tr>
<td><?php echo $_lang['database_server']?></td>
<td> </td>
<td><b><?php echo $database_server ?></b></td>
</tr>
<tr>
<td><?php echo $_lang['table_prefix']?></td>
<td> </td>
<td><b><?php echo $table_prefix ?></b></td>
</tr>
</table>
</div>
<!-- recent documents -->
<div class="sectionHeader"><?php echo $_lang["activity_title"]; ?></div><div class="sectionBody" id="lyr1">
<?php echo $_lang["sysinfo_activity_message"]; ?><p>
<table border="0" cellpadding="1" cellspacing="1" width="100%" bgcolor="#707070">
<thead>
<tr>
<td><b><?php echo $_lang['id']; ?></b></td>
<td><b><?php echo $_lang['document_title']; ?></b></td>
<td><b><?php echo $_lang["sysinfo_userid"]; ?></b></td>
<td><b><?php echo $_lang['datechanged']; ?></b></td>
</tr>
</thead>
<tbody>
<?php
$sql = "SELECT id, pagetitle, editedby, editedon FROM $dbase.`".$table_prefix."site_content` WHERE $dbase.`".$table_prefix."site_content`.deleted=0 ORDER BY editedon DESC LIMIT 20";
$rs = mysql_query($sql);
$limit = mysql_num_rows($rs);
if($limit<1) {
echo "No edits or creates found.<p />";
} else {
for ($i = 0; $i < $limit; $i++) {
$content = mysql_fetch_assoc($rs);
$sql = "SELECT username FROM $dbase.`".$table_prefix."manager_users` WHERE id=".$content['editedby'];
$rs2 = mysql_query($sql);
$limit2 = mysql_num_rows($rs2);
if($limit2==0) $user = '-';
else {
$r = mysql_fetch_assoc($rs2);
$user = $r['username'];
}
$bgcolor = ($i % 2) ? '#EEEEEE' : '#FFFFFF';
echo "<tr bgcolor='$bgcolor'><td>".$content['id']."</td><td><a href='index.php?a=3&id=".$content['id']."'>".$content['pagetitle']."</a></td><td>".$user."</td><td>".strftime('%d-%m-%Y, %H:%M:%S', $content['editedon']+$server_offset_time)."</td></tr>";
}
}
?>
</tbody>
</table>
</div>
<!-- database -->
<div class="sectionHeader"><?php echo $_lang['database_tables']; ?></div><div class="sectionBody" id="lyr4">
<p><?php echo $_lang['table_hoverinfo']; ?><p />
<table border="0" cellpadding="1" cellspacing="1" width="100%" bgcolor="#707070">
<thead>
<tr>
<td width="160"><b><?php echo $_lang["database_table_tablename"]; ?></b></td>
<td width="40" align="right"><b><?php echo $_lang["database_table_records"]; ?></b></td>
<td width="120" align="right"><b><?php echo $_lang["database_table_datasize"]; ?></b></td>
<td width="120" align="right"><b><?php echo $_lang["database_table_overhead"]; ?></b></td>
<td width="120" align="right"><b><?php echo $_lang["database_table_effectivesize"]; ?></b></td>
<td width="120" align="right"><b><?php echo $_lang["database_table_indexsize"]; ?></b></td>
<td width="120" align="right"><b><?php echo $_lang["database_table_totalsize"]; ?></b></td>
</tr>
</thead>
<tbody>
<?php
function nicesize($size) {
$a = array("B", "KB", "MB", "GB", "TB", "PB");
$pos = 0;
while ($size >= 1024) {
$size /= 1024;
$pos++;
}
if($size==0) {
return "-";
} else {
return round($size,2)." ".$a[$pos];
}
}
$sql = "SHOW TABLE STATUS FROM $dbase;";
$rs = mysql_query($sql);
$limit = mysql_num_rows($rs);
for ($i = 0; $i < $limit; $i++) {
$log_status = mysql_fetch_assoc($rs);
$bgcolor = ($i % 2) ? '#EEEEEE' : '#FFFFFF';
?>
<tr bgcolor="<?php echo $bgcolor; ?>" title="<?php echo $log_status['Comment']; ?>" style="cursor:default">
<td><b style="color:#009933"><?php echo $log_status['Name']; ?></b></td>
<td align="right"><?php echo $log_status['Rows']; ?></td>
<?php
// enable record deletion for certain tables
// sottwell@sottwell.com
// 08-2005
if($modx->hasPermission('settings') && ($log_status['Name'] == "`".$table_prefix."event_log`" || $log_status['Name'] == "`".$table_prefix."log_access`" || $log_status['Name'] == "`".$table_prefix."log_hosts`" || $log_status['Name'] == "`".$table_prefix."log_visitors`" || $log_status['Name'] == "`".$table_prefix."manager_log`")) {
echo "<td dir='ltr' align='right'>";
echo "<a href='index.php?a=54&mode=$action&u=".$log_status['Name']."' title='".$_lang['truncate_table']."'>".nicesize($log_status['Data_length']+$log_status['Data_free'])."</a>";
echo "</td>";
}
else {
echo "<td dir='ltr' align='right'>".nicesize($log_status['Data_length']+$log_status['Data_free'])."</td>";
}
if($modx->hasPermission('settings')) {
echo "<td align='right'>".($log_status['Data_free']>0 ? "<a href='index.php?a=54&mode=$action&t=".$log_status['Name']."' title='".$_lang['optimize_table']."' ><span dir='ltr'>".nicesize($log_status['Data_free'])."</span></a>" : "-")."</td>";
}
else {
echo "<td dir='ltr' align='right'>".($log_status['Data_free']>0 ? nicesize($log_status['Data_free']) : "-")."</td>";
}
?>
<td dir='ltr' align="right"><?php echo nicesize($log_status['Data_length']-$log_status['Data_free']); ?></td>
<td dir='ltr' align="right"><?php echo nicesize($log_status['Index_length']); ?></td>
<td dir='ltr' align="right"><?php echo nicesize($log_status['Index_length']+$log_status['Data_length']+$log_status['Data_free']); ?></td>
</tr>
<?php
$total = $total+$log_status['Index_length']+$log_status['Data_length'];
$totaloverhead = $totaloverhead+$log_status['Data_free'];
}
?>
<tr bgcolor="#CCCCCC">
<td valign="top"><b><?php echo $_lang['database_table_totals']; ?></b></td>
<td colspan="2"> </td>
<td dir='ltr' align="right" valign="top"><?php echo $totaloverhead>0 ? "<b style='color:#990033'>".nicesize($totaloverhead)."</b><br>(".number_format($totaloverhead)." B)" : "-"; ?></td>
<td colspan="2"> </td>
<td dir='ltr' align="right" valign="top"><?php echo "<b>".nicesize($total)."</b><br>(".number_format($total)." B)"; ?></td>
</tr>
</tbody>
</table>
<?php
if($totaloverhead>0) { ?>
<p><?php echo $_lang['database_overhead']; ?></p>
<?php } ?>
</form>
</div>
<!-- online users -->
<div class="sectionHeader"><?php echo $_lang['onlineusers_title']; ?></div><div class="sectionBody" id="lyr5">
<p><?php echo $_lang['onlineusers_message']; ?>
<b><?php echo strftime('%H:%M:%S', time()+$server_offset_time); ?></b>)</p>
<table border="0" cellpadding="1" cellspacing="1" width="100%" bgcolor="#707070">
<thead>
<tr>
<td><b><?php echo $_lang['onlineusers_user']; ?></b></td>
<td><b><?php echo $_lang['onlineusers_userid']; ?></b></td>
<td><b><?php echo $_lang['onlineusers_ipaddress']; ?></b></td>
<td><b><?php echo $_lang['onlineusers_lasthit']; ?></b></td>
<td><b><?php echo $_lang['onlineusers_action']; ?></b></td>
<td><b><?php echo $_lang['onlineusers_actionid']; ?></b></td>
</tr>
</thead>
<tbody>
<?php
$timetocheck = (time()-(60*20));
include_once "actionlist.inc.php";
$sql = "SELECT * FROM $dbase.`".$table_prefix."active_users` WHERE $dbase.`".$table_prefix."active_users`.lasthit>$timetocheck ORDER BY username ASC";
$rs = mysql_query($sql);
$limit = mysql_num_rows($rs);
if($limit<1) {
echo "No active users found.<p />";
} else {
for ($i = 0; $i < $limit; $i++) {
$activeusers = mysql_fetch_assoc($rs);
$currentaction = getAction($activeusers['action'], $activeusers['id']);
$webicon = ($activeusers['internalKey']<0)? "<img align='absmiddle' src='media/style/{$manager_theme}/images/tree/globe.gif' alt='Web user'>":"";
echo "<tr bgcolor='#FFFFFF'><td><b>".$activeusers['username']."</td><td>$webicon ".abs($activeusers['internalKey'])."</td><td></b>".$activeusers['ip']."</td><td>".strftime('%H:%M:%S', $activeusers['lasthit']+$server_offset_time)."</td><td>$currentaction</td><td align='right'>".$activeusers['action']."</td></tr>";
}
}
?>
</tbody>
</table>
</div>