} if ($this->mobile == false && $this->getConfig("show_load_time") == true) { printf($this->getString("page_load_time") . " | ", (microtime(TRUE) - $_START_TIME) * 1000); } ?> <a href="http://encode-explorer.siineiolekala.net">Encode Explorer</a> </div> <!-- END: Info area --> </body> </html> <?php } } // // This is where the system is activated. // We check if the user wants an image and show it. If not, we show the explorer. // $encodeExplorer = new EncodeExplorer(); $encodeExplorer->init(); GateKeeper::init(); if (!ImageServer::showImage() && !Logger::logQuery()) { $location = new Location(); $location->init(); if (GateKeeper::isAccessAllowed()) { Logger::logAccess($location->getDir(true, false, false, 0), true); $fileManager = new FileManager(); $fileManager->run($location); } $encodeExplorer->run($location); }
<?php require_once 'config.php'; require_once 'users.php'; require_once 'class.php'; require_once 'remember.php'; $cookies = new Cookies(); $encodeExplorer = new EncodeExplorer(); $encodeExplorer->init(); $gateKeeper = new GateKeeper(); $gateKeeper->init(); $setUp = new SetUp(); $timeconfig = $setUp->getConfig('default_timezone'); $timezone = strlen($timeconfig) > 0 ? $timeconfig : "UTC"; date_default_timezone_set($timezone); $downloader = new Downloader(); $utils = new Utils(); $logger = new Logger(); $actions = new Actions(); $getcloud = $_POST["setdel"]; $hash = filter_input(INPUT_POST, "h", FILTER_SANITIZE_STRING); $doit = filter_input(INPUT_POST, "doit", FILTER_SANITIZE_STRING); $time = filter_input(INPUT_POST, "t", FILTER_SANITIZE_STRING); if ($doit != $time * 12) { die('Direct access not permitted'); } $alt = $setUp->getConfig('salt'); $altone = $setUp->getConfig('session_name'); if ($hash && $time && $gateKeeper->isUserLoggedIn() && $gateKeeper->isAllowed('delete_enable')) { if (md5($alt . $time) === $hash && $downloader->checkTime($time) == true) { foreach ($getcloud as $pezzo) {