Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
PK [[JO htdocs/common/common.phpnu W+A values = func_get_args();
$this->i = -1;
$this->count = count($this->values);
}
function next()
{
$this->i = ($this->i + 1) % $this->count;
return $this->values[$this->i];
}
function cur()
{
return $this->values[$this->i];
}
function reset()
{
$this->i = -1;
}
}
function switcher($name, $options)
{
$n = isset($_GET[$name]) ? $_GET[$name] : null;
$html = array();
foreach ($options as $k => $v) {
$html[] = sprintf('%s', $name, $k, $k == $n ? ' class="active"' : '', $v);
}
return implode('', $html);
}
function mainnav()
{
foreach (array(
"http://xcache.lighttpd.net/" => "XCache",
"http://xcache.lighttpd.net/wiki/DocTOC" => _T("Document"),
"http://xcache.lighttpd.net/wiki/PhpIni" => _T("INI Reference"),
"http://xcache.lighttpd.net/wiki/GetSupport" => _T("Get Support"),
"https://groups.google.com/group/xcache/" => _T("Discusson"),
"http://www.php.net/" => "PHP",
"http://www.lighttpd.net/" => "Lighttpd",
) as $url => $title) {
$html[] = sprintf('%s', $url, $title);
}
return implode('|', $html);
}
function subnav()
{
global $module, $modules;
$html = array();
foreach ($modules as $k => $v) {
$html[] = sprintf('%s', $k, $k == $module ? ' class="active"' : '', $v);
}
return implode('', $html);
}
function th($name, $attrs = null)
{
$translated = __($name);
if ($translated == $name) {
$translated = "$name|$name";
}
list($text, $title) = explode('|', $translated, 2);
return sprintf('%s%s | %s'
, "\t"
, $attrs ? " $attrs" : ""
, $name, htmlspecialchars(trim($title)), trim($text)
, "\n");
}
function xcache_validateFileName($name)
{
return preg_match('!^[a-zA-Z0-9._-]+$!', $name);
}
function get_language_file_ex($dir, $lang)
{
static $langMap = array(
'zh' => 'zh-simplified',
'zh-hk' => 'zh-traditional',
'zh-tw' => 'zh-traditional',
);
if (isset($langMap[$lang])) {
$lang = $langMap[$lang];
}
else if (!xcache_validateFileName($lang)) {
return null;
}
$file = "$dir/$lang.php";
if (file_exists($file)) {
return $file;
}
return null;
}
function get_language_file($dir)
{
global $config;
if (!empty($config['lang'])) {
$lang = strtolower($config['lang']);
$file = get_language_file_ex($dir, $lang);
if (!isset($file)) {
$lang = strtok($lang, ':-');
$file = get_language_file_ex($dir, $lang);
}
}
else {
$config['lang'] = 'en';
if (!empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
foreach (explode(',', str_replace(' ', '', $_SERVER['HTTP_ACCEPT_LANGUAGE'])) as $lang) {
$lang = strtok($lang, ':;');
$file = get_language_file_ex($dir, $lang);
if (isset($file)) {
$config['lang'] = $lang;
break;
}
if (strpos($lang, '-') !== false) {
$file = get_language_file_ex($dir, strtok($lang, ':-'));
if (isset($file)) {
$config['lang'] = $lang;
break;
}
}
}
}
}
return isset($file) ? $file : "$dir/en.php";
}
function _T($str)
{
if (isset($GLOBALS['strings'][$str])) {
return $GLOBALS['strings'][$str];
}
if (!empty($GLOBALS['config']['show_todo_strings'])) {
return '' . $str . '|';
}
return $str;
}
function __($str)
{
return _T($str);
}
function N_($str)
{
return $str;
}
function number_formats($a, $keys)
{
foreach ($keys as $k) {
$a[$k] = number_format($a[$k]);
}
return $a;
}
function size($size)
{
$size = (int) $size;
if ($size < 1024)
return number_format($size, 2) . ' b';
if ($size < 1048576)
return number_format($size / 1024, 2) . ' K';
return number_format($size / 1048576, 2) . ' M';
}
function age($time)
{
if (!$time) return '';
$delta = REQUEST_TIME - $time;
if ($delta < 0) {
$delta = -$delta;
}
static $seconds = array(1, 60, 3600, 86400, 604800, 2678400, 31536000);
static $name = array('s', 'm', 'h', 'd', 'w', 'M', 'Y');
for ($i = 6; $i >= 0; $i --) {
if ($delta >= $seconds[$i]) {
$ret = (int) ($delta / $seconds[$i]);
return $ret . $name[$i];
}
}
return '0s';
}
function stripaddslashes_array($value, $mqs = false)
{
if (is_array($value)) {
foreach($value as $k => $v) {
$value[$k] = stripaddslashes_array($v, $mqs);
}
}
else if(is_string($value)) {
$value = $mqs ? str_replace('\'\'', '\'', $value) : stripslashes($value);
}
return $value;
}
function ob_filter_path_nicer_default($list_html)
{
$sep = DIRECTORY_SEPARATOR;
$docRoot = $_SERVER['DOCUMENT_ROOT'];
if ($sep != '/') {
$docRoot = str_replace('/', $sep, $docRoot);
}
$list_html = str_replace(">$docRoot", ">{DOCROOT}" . (substr($docRoot, -1) == $sep ? $sep : ""), $list_html);
$xcachedir = realpath(dirname(__FILE__) . "$sep..$sep");
$list_html = str_replace(">$xcachedir$sep", ">{XCache}$sep", $list_html);
if ($sep == '/') {
$list_html = str_replace(">/home/", ">{H}/", $list_html);
}
return $list_html;
}
error_reporting(E_ALL);
ini_set('display_errors', 'On');
define('REQUEST_TIME', time());
if (function_exists('get_magic_quotes_gpc') && @get_magic_quotes_gpc()) {
$mqs = (bool) ini_get('magic_quotes_sybase');
$_GET = stripaddslashes_array($_GET, $mqs);
$_POST = stripaddslashes_array($_POST, $mqs);
$_REQUEST = stripaddslashes_array($_REQUEST, $mqs);
unset($mqs);
}
ini_set('magic_quotes_runtime', '0');
$config = array();
if (file_exists("./config.default.php")) {
include "./config.default.php";
}
include "../config.default.php";
if (file_exists("../config.php")) {
include "../config.php";
}
if (file_exists("./config.php")) {
include "./config.php";
}
$strings = array();
include get_language_file("../common/lang");
$modules = array();
if (file_exists("../cacher/index.php")) {
$modules["cacher"] = _T("Cacher");
}
if (file_exists("../coverager/index.php")) {
$modules["coverager"] = _T("Coverager");
}
if (file_exists("../diagnosis/index.php")) {
$modules["diagnosis"] = _T("Diagnosis");
}
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
header("Content-Type: text/html; " . $GLOBALS['config']['charset']);
header("Content-Language: " . $GLOBALS['config']['lang']);
?>
PK [[pN N htdocs/common/common.cssnu W+A * {
box-sizing: border-box;
-moz-box-sizing: border-box;
}
body {
background: white;
color: black;
margin: 0;
padding: 0;
font-family: arial;
font-size: 12pt;
}
form {
margin: 0;
padding: 0;
}
a:link
, a:visited {
color: #0066CC;
}
a:link:hover
, a:visited:hover {
color: #BB0000;
}
a:link:active
, a:visited:active {
color: red;
}
#header {
background: #5084D5;
position: relative;
height: 51px;
color: #d0d0d0;
}
h1, h2, h3, h4, h5, h6 {
margin-bottom: 2px;
}
#header #banner {
font: 32px/51px "arial", serif;
color: white;
}
#header #banner a {
color: white;
}
#header #banner #logo {
border: 0;
display: block;
float: left;
margin-right: 5px;
background: white;
}
#header #mainnav {
top: 3px;
right: 5px;
font-size: 16px;
line-height: 16px;
position: absolute;
}
#header #mainnav a {
font-size: 14px;
}
#header #subnav {
bottom: 0;
right: 5px;
position: absolute;
font-size: 28px;
line-height: 28px;
}
#header #subnav a {
font-size: 24px;
}
#header #nav {
font-family: "arial", serif;
}
#header #mainnav a:link, #header #mainnav a:visited {
color: black;
}
#header #mainnav a:active, #header #mainnav a:hover {
color: red;
}
#header #mainnav a {
padding: 0 8px 0 8px;
}
#headerbase {
background: #1163BC;
border: 1px solid #334C66;
border-width: 1px 0 1px 0;
margin-bottom: 10px;
font: 12px/12px serif;
}
#main table {
font-size: 12px;
border: 1px solid #334C66;
border-top-width: 0;
}
#main table caption {
background: #1163BC;
color: white;
line-height: 20px;
border: 1px solid #334C66;
border-bottom-width: 0;
padding: 0;
}
#main table tfoot {
background: #1163BC;
}
#main table th {
background: #E7E7FF;
color: black;
}
#main table td {
vertical-align: top;
}
#main {
margin: 20px;
}
#note {
font-size: 11.9px;
}
#footer {
bottom: 0px;
background: #E7E7FF;
border-top: 1px solid gray;
}
#poweredBy {
overflow: hidden;
}
#footer {
clear: both;
height: 40px;
position: relative;
}
#footer img {
margin-top: 2px;
margin-left: 2px;
border: 0;
}
#poweredBy h3 {
float: right;
margin-right: 20px;
margin-top: 20px;
}
#poweredBy h3 {
margin: 0;
font-size: 12px;
position: absolute;
bottom: 8px;
right: 8px;
}
.phpinfo table { border: 1px solid #334C66; margin-bottom: 1px; }
.phpinfo table th, .phpinfo table td { border: 1px solid #334C66; }
.phpinfo table th { font-weight: bold; }
.phpinfo .e {background: #81BBF2; font-weight: bold; color: #000000;}
#main .phpinfo .h th {background: #5084D5; font-weight: bold; color: #000000;}
.phpinfo .v {color: #000000;}
.button { }
span.sortarrow { color: white; text-decoration: none; }
table.cycles { border: 1px solid #334C66; margin-bottom: 5px; }
table.cycles .col1 { background: #f5f5f5; }
table.cycles .col2 { background: #e0e0e0; }
table.cycles th, table.cycles td { border: 1px solid #334C66; font-family: monospace; }
#main table.cycles caption { color: white; font-weight: bold; height: 24px; line-height: 24px; font-family: serif; }
#main table.cycles th { background: #81BBF2; color: #334C66; font-weight: bold; height: 20px; line-height: 20px; font-family: serif; }
#main table.cycles th.h { background: #5084D5; }
th.h a:visited
, th.h a:link { color: black; }
th.h a:hover { color: #BB0000; }
th.h a:active { color: red; }
th a { font-weight: bold; display: block; width: 100%; height: 100%; }
th { font-size: 12px; }
input, table { font-family: sans-serif; }
input { font-size: 12px; }
table { border-collapse: collapse; font-size: 11px; margin: 0; }
table caption {
font-size: 14px;
font-weight: bold;
}
a {
text-decoration: none;
}
#main table td {
vertical-align: middle;
}
.switcher a { color: black; padding: 1px 8px 1px 8px; border: 1px solid white; }
.switcher a { border-color: white; border-bottom-color: #334C66; }
#nav .switcher a { border-color: #5084D5; border-bottom-color: #334C66; }
#nav .switcher a.active, .switcher a.active { color: white; background: #1163BC; border-color: #334C66; border-bottom-color: #1163BC; }
#nav .switcher a:hover.active, .switcher a:hover.active { background: #81BBF2; }
.switcher a:hover { background: #81BBF2; }
#nav .switcher a:active, .switcher a:active { background: #81BBF2; }
PK [[[ htdocs/common/xcache.pngnu W+A PNG
IHDR 3 6XM gAMA cHRM U y} =. *" iCCPICC Profile 8˭k@ovi+(UTbYYzhѺn5
Zt7$_!=TQxI)HAPB&dz3o2o nx^3qCM3.╗qޏmk+ݱoZ)xHٽ \@{Pm=whMk?Rw̢lR;Y%,%X]jK5@Zur9D
g
N-s{OZ霴LT9dAdFuNQԓ<ҌiOH_mM'{Y$Щ$sLc|?_Y`ѻXz3^-oٷPR-klA pHYs + DIDATx^] xU~6Inh
XRMvPĂ13zeq;0:x
FD@DևUYeP(Z(Жii2w`ٓ.