????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.191 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/usr/share/phpsysinfo/ |
Upload File : |
<?php
/**
* start page for webaccess
* redirect the user to the supported page type by the users webbrowser (js available or not)
*
* PHP version 5
*
* @category PHP
* @package PSI
* @author Michael Cramer <BigMichi1@users.sourceforge.net>
* @copyright 2009 phpSysInfo
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @version SVN: $Id: index.php 412 2010-12-29 09:45:53Z Jacky672 $
* @link http://phpsysinfo.sourceforge.net
*/
/**
* define the application root path on the webserver
* @var string
*/
define('APP_ROOT', dirname(__FILE__));
/**
* internal xml or external
* external is needed when running in static mode
*
* @var boolean
*/
define('PSI_INTERNAL_XML', false);
if (version_compare("5.2", PHP_VERSION, ">")) {
die("PHP 5.2 or greater is required!!!");
}
require_once APP_ROOT.'/includes/autoloader.inc.php';
// Load configuration
if (!is_readable(APP_ROOT.'/config.php')) {
$tpl = new Template("/templates/html/error_config.html");
echo $tpl->fetch();
die();
}
else {
include_once APP_ROOT.'/config.php';
}
// redirect to page with and without javascript
$display = isset($_GET['disp']) ? $_GET['disp'] : PSI_DEFAULT_DISPLAY_MODE;
switch ($display) {
case "static":
$webpage = new WebpageXSLT();
$webpage->run();
break;
case "dynamic":
$webpage = new Webpage();
$webpage->run();
break;
case "xml":
$webpage = new WebpageXML(true, null);
$webpage->run();
break;
default:
$tpl = new Template("/templates/html/index_all.html");
echo $tpl->fetch();
break;
}
?>