Your IP : 216.73.216.26


Current Path : /home2/wtmwscom/www/livezila/
Upload File :
Current File : /home2/wtmwscom/www/livezila/index.php

<?php
/****************************************************************************************
* LiveZilla index.php
* 
* Copyright 2018 LiveZilla GmbH
* All rights reserved.
* LiveZilla is a registered trademark.
* 
***************************************************************************************/

if(!defined("IN_LIVEZILLA"))
    define("IN_LIVEZILLA",true);

if(!defined("LIVEZILLA_PATH"))
	define("LIVEZILLA_PATH","./");

header("Content-Type: text/html; charset=UTF-8");

require_once(LIVEZILLA_PATH . "language.php");
require_once(LIVEZILLA_PATH . "_definitions/definitions.protocol.inc.php");
require_once(LIVEZILLA_PATH . "_definitions/definitions.dynamic.inc.php");
require_once(LIVEZILLA_PATH . "_lib/functions.index.inc.php");
require_once(LIVEZILLA_PATH . "_lib/functions.external.inc.php");

LocalizationManager::AutoLoad();

@set_error_handler("handleError");

header("Pragma: no-cache");
header("Cache-Control: no-cache, must-revalidate");
header("Keep-Alive: timeout=5, max=100");

Server::InitDataProvider();

CacheManager::Flush();
ServerPage::Repair();
Server::DefineURL("index.php");
Server::InitDataBlock(array("FILTERS"));

$scheme = Communication::GetScheme();
$locale = Visitor::$BrowserLanguage == "de" ? "de" : "en";
$html = IOStruct::GetFile(TEMPLATE_HTML_INDEX);
$infoBox = null;
$updateRequired = false;
$installRequired = !file_exists(FILE_CONFIG) && !file_exists(FILE_CONFIG_OLD);
$configFolderWriteable = true;
$lzid = "";
$databaseVersion="";
$infos['php_version'] = ServerPage::GetPhpVersion();
$infos['mysql'] = ServerPage::GetMySQLIssues($updateRequired,$databaseVersion);
$infos['file'] = ServerPage::GetFileIssues($configFolderWriteable,$updateRequired);
$infos['disabled'] = ServerPage::GetDisabledFunctions();
$infos['fcounta'] = 0;
$infos['fcountr'] = 0;
$infoBox = "";
$infoBox .= $infos['file'];
$infoBox .= $infos['php_version'];
$infoBox .= $infos['mysql'];
$infoBox .= $infos['disabled'];

$installMode = $updateRequired || !file_exists(FILE_CONFIG);

if(!file_exists(FILE_INSTALLER) && !$installRequired && !$updateRequired && !isset($_GET["forceIndex"]) && isset(Server::$Configuration->File["gl_kbsp"]) && Server::$Configuration->File["gl_kbsp"])
{
    require("knowledgebase.php");
    exit();
}

$infos['fcountr'] = 0;
$infos['fcounta'] = 0;

if(DBManager::$Connected)
{
    $lzid = Server::$Configuration->File["gl_lzid"];

    if(!file_exists(FILE_INSTALLER))
        $lzid = substr(strtoupper(md5($lzid)),0,5);

    $infos['fcounta'] = count(Server::$Filters->Filters);
    if($infos['fcounta'])
        foreach(Server::$Filters->Filters as $f)
            if($f->Type==1)
                $infos['fcountr']++;

    $html = str_replace("<!--kb_link-->",!empty(Server::$Configuration->File["gl_kbmr"]) ? "./knowledge-base/" : "./knowledgebase.php",$html);
}
else if(file_exists(FILE_INSTALLER))
{
    require_once(FILE_INSTALLER);
    require_once(LIVEZILLA_PATH . "_lib/functions.internal.man.inc.php");
    $wc = false;
    $vars = Installer::ImportConfigFile($wc);
    $lzid = $vars[7];
}

if(!file_exists(FILE_INSTALLER) && ($updateRequired || $installMode))
    exit("Error: The 'Install' folder is missing. Please upload all files from the setup package.");

$html = str_replace("<!--kb_link-->","./knowledgebase.php",$html);
$html = str_replace("<!--widget-->",(!$updateRequired && !$installRequired) ? "<!-- livezilla.net PLACE SOMEWHERE IN BODY --><script type=\"text/javascript\" id=\"lzdefsc\" src=\"<!--server_pr-->script.php?id=lzdefsc\" defer></script><!-- livezilla.net PLACE SOMEWHERE IN BODY -->" : "",$html);
$html = str_replace("<!--topMargin-->",0,$html);
$html = str_replace("<!--infos-->",$infoBox,$html);
$html = str_replace("<!--lz_id-->",$lzid,$html);
$html = str_replace("<!--lz_version-->",VERSION,$html);
$html = str_replace("<!--locale-->",$locale,$html);
$html = str_replace("<!--database_version-->",$databaseVersion,$html);
$html = str_replace("<!--time-->",date(DATE_W3C) . " (" . SystemTime::GetSystemTimezone() . ")",$html);
$html = str_replace("<!--scheme-->",str_replace("://","",strtoupper(Communication::GetScheme())),$html);
$html = str_replace("<!--filters-->",$infos['fcountr']." / ".$infos['fcounta'],$html);
$html = str_replace("<!--show_body-->",isset($_GET["demo"]) ? "none" : "block",$html);
$html = str_replace("<!--body_bg-->",isset($_GET["demo"]) ? " style=\"background: url('./images/preview_bg.gif')!important;\"" : "",$html);
$html = str_replace("<!--timestamp-->",time(),$html);
$html = str_replace("<!--install_possible-->",To::BoolString($configFolderWriteable),$html);
$html = str_replace("<!--install_mode-->",To::BoolString($installMode),$html);
$html = str_replace("<!--update_mode-->",To::BoolString($updateRequired || (!file_exists(FILE_CONFIG) && file_exists(FILE_CONFIG_OLD))),$html);
$html = str_replace("<!--title-->",base64_decode($d[array_rand($d=array("TGl2ZVppbGxhIExpdmUgQ2hhdCBTb2Z0d2FyZQ==","TGl2ZVppbGxhIExpdmUgU3VwcG9ydCBTb2Z0d2FyZQ==","TGl2ZVppbGxhIExpdmUgQ2hhdCBTb2Z0d2FyZQ==","TGl2ZVppbGxhIExpdmUgSGVscCBTb2Z0d2FyZQ==","TGl2ZVppbGxhIExpdmUgQ2hhdCBTb2Z0d2FyZQ==","TGl2ZVppbGxhIEN1c3RvbWVyIFN1cHBvcnQ=","TGl2ZVppbGxhIE9ubGluZSBTdXBwb3J0","TGl2ZVppbGxhIExpdmUgQ2hhdCBTb2Z0d2FyZQ=="),1)]),$html);

echo(Server::Replace($html));
?>