- is_numeric: documentation ( source)
- array_unshift: documentation ( source)
- date_default_timezone_set: documentation ( source)
- ini_set: documentation ( source)
- extract: documentation ( source)
- ini_get: documentation ( source)
<?php
date_default_timezone_set("Europe/Amsterdam");
ini_set('display_errors', 1);
ini_set('error_reporting', E_ALL);
// This file Copyright ©2004 Fusker.com
$_GET['special'] = 'preview';
$PAGE = 'index';
include('mainfile.php');
// Emulate register_globals on
if (!ini_get('register_globals')) {
$superglobals = array($_SERVER, $_ENV,
$_FILES, $_COOKIE, $_POST, $_GET);
if (isset($_SESSION)) {
array_unshift($superglobals, $_SESSION);
}
foreach ($superglobals as $superglobal) {
extract($superglobal, EXTR_SKIP);
}
}
// Convert initial parameters
$lid = $_GET['lid'];
$offset = $_GET['offset'];
$query = $_GET['query'];
$author = $_GET['author'];
$url = $_GET['url'];
$method = $_GET['method'];
$special = $_GET['special'];
// Refer parameter
$q = $_GET['q'];
// Do we have a user
if ($xoopsUser) {
$uid = $xoopsUser->getVar('uid');
} else {
$uid = 0;
}
// Load needed includes
if (is_numeric($q)) {
include_once(XOOPS_ROOT_PATH . '/mainfile.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/refer_track_functions.php');
} else {
$q = false;
}
if ($url) {
include_once(XOOPS_ROOT_PATH . '/include/functions/return_link_array.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/analyze_url.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/extract_linked_images_functions.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/store_serialized.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/update_store_serialized.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/check_banned_url.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/clean_cache.php');
}
if ($query) {
include_once(XOOPS_ROOT_PATH . '/include/functions/prepare_query.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/validate_query.php');
}
// General includes
include_once(XOOPS_ROOT_PATH . '/include/functions/time_functions.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/die_with_warning.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/parameter_validations.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/create_links.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/force_links.php');
include_once(XOOPS_ROOT_PATH . '/include/functions/display_fusker.php');
// Begin page display
include(XOOPS_ROOT_PATH . '/include/header.php');
include(XOOPS_ROOT_PATH . '/include/top.php');
include(XOOPS_ROOT_PATH . '/include/links.php');
include(XOOPS_ROOT_PATH . '/include/search.php');
include(XOOPS_ROOT_PATH . '/include/url.php');
include(XOOPS_ROOT_PATH . '/include/content.php');
include(XOOPS_ROOT_PATH . '/include/fuskers.php');
include(XOOPS_ROOT_PATH . '/include/recent_fuskers.php');
include(XOOPS_ROOT_PATH . '/include/footer.php');
exit();
?>
This script was stopped while abusing our resources