HEX
Server: LiteSpeed
System: Linux d8 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: wbwebdes (3015)
PHP: 8.1.31
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/wbwebdes/domains/mailing.wb-cloud.nl/private_html/admin/help/index.php
<?php

ob_start();
error_reporting(0);
if (!empty($_SERVER['ConfigFile']) && is_file($_SERVER['ConfigFile'])) {
    #  print '<!-- using '.$_SERVER["ConfigFile"].'-->'."\n";
  include $_SERVER['ConfigFile'];
} elseif (is_file('../../config/config.php')) {
    #  print '<!-- using ../../config/config.php-->'."\n";
  include '../../config/config.php';
} else {
    print "Error, cannot find config file\n";
    exit;
}
$now = gettimeofday();
$GLOBALS['pagestats'] = array();
$GLOBALS['pagestats']['time_start'] = $now['sec'] * 1000000 + $now['usec'];
$GLOBALS['pagestats']['number_of_queries'] = 0;

require_once dirname(__FILE__).'/../init.php';
require_once dirname(__FILE__).'/../'.$GLOBALS['database_module'];
require_once dirname(__FILE__).'/../inc/random_compat/random.php';
require_once dirname(__FILE__).'/../../texts/english.inc';
include_once dirname(__FILE__).'/../../texts/'.$GLOBALS['language_module'];
include_once dirname(__FILE__).'/../languages.php';
require_once dirname(__FILE__).'/../defaultconfig.php';
require_once dirname(__FILE__).'/../connect.php';
require_once dirname(__FILE__).'/../inc/interfacelib.php';
include_once dirname(__FILE__).'/../ui/'.$GLOBALS['ui'].'/pagetop_minimal.php';
# record the start time(usec) of script

if (!isset($_GET['topic'])) {
    $topic = 'home';
} else {
    $topic = $_GET['topic'];
}

preg_match("/([\w_]+)/", $topic, $regs);
$topic = $regs[1];
$include = '';
$en_include = '';
$topic = basename($topic);
if ($topic) {
    if (is_file($_SESSION['adminlanguage']['iso'].'/'.$topic.'.php')) {
        $include = $_SESSION['adminlanguage']['iso'].'/'.$topic.'.php';
    }
    if (is_file('en/'.$topic.'.php')) {
        $en_include = 'en/'.$topic.'.php';
    }
}

?>
<title>help</title>
</head>
<body>
<!-- content -->
<?php
if ($include) {
    include $include;
} else {
    if ($en_include && is_file($en_include)) {
        print $GLOBALS['I18N']->get('Sorry, this help topic does not exist in your language. Below is the english version.').' '.'<i>'.$topic.'</i><hr/>';

        include $en_include;
    } else {
        print $GLOBALS['I18N']->get('Sorry, this help topic does not exist in your language.').' '.'<i>'.$topic.'</i>';
    }
}

ob_end_flush();

print '</body></html>';