/************************************************************************/ /* PHP-NUKE: Advanced Content Management System */ /* ============================================ */ /* */ /* Copyright (c) 2006 by Francisco Burzi */ /* http://phpnuke.org */ /* */ /* This program is free software. You can redistribute it and/or modify */ /* it under the terms of the GNU General Public License as published by */ /* the Free Software Foundation; either version 2 of the License. */ /************************************************************************/ require_once("mainfile.php"); global $prefix, $db, $admin_file; if (isset($op) AND ($op == "ad_click") AND isset($bid)) { $bid = intval($bid); $sql = "SELECT clickurl FROM ".$prefix."_banner WHERE bid='$bid'"; $result = $db->sql_query($sql); list($clickurl) = $db->sql_fetchrow($result); $clickurl = filter($clickurl, "nohtml"); $db->sql_query("UPDATE ".$prefix."_banner SET clicks=clicks+1 WHERE bid='$bid'"); update_points(21); Header("Location: ".htmlentities($clickurl)); die(); } $modpath = ''; define('MODULE_FILE', true); $_SERVER['PHP_SELF'] = "modules.php"; $row = $db->sql_fetchrow($db->sql_query("SELECT main_module from ".$prefix."_main")); $name = $row['main_module']; define('HOME_FILE', true); if (isset($url) AND is_admin($admin)) { $url = urldecode($url); echo ""; die(); } if ($httpref == 1) { if (isset($_SERVER['HTTP_REFERER'])) { $referer = $_SERVER['HTTP_REFERER']; $referer = check_html($referer, "nohtml"); } if (!empty($referer) && !stripos_clone($referer, "unknown") && !stripos_clone($referer, "bookmark") && !stripos_clone($referer, $_SERVER['HTTP_HOST'])) { $result = $db->sql_query("INSERT INTO ".$prefix."_referer VALUES (NULL, '".$referer."')"); } $numrows = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_referer")); if($numrows>=$httprefmax) { $result2 = $db->sql_query("DELETE FROM ".$prefix."_referer"); } } if (!isset($mop)) { $mop="modload"; } if (!isset($mod_file)) { $mod_file="index"; } $name = trim($name); if (isset($file)) { $file = trim($file); } $mod_file = trim($mod_file); $mop = trim($mop); if (stripos_clone($name,"..") || (isset($file) && stripos_clone($file,"..")) || stripos_clone($mod_file,"..") || stripos_clone($mop,"..")) { die("You are so cool..."); } else { $ThemeSel = get_theme(); if (file_exists("themes/$ThemeSel/module.php")) { include("themes/$ThemeSel/module.php"); if (is_active("$default_module") AND file_exists("modules/$default_module/".$mod_file.".php")) { $name = $default_module; } } if (file_exists("themes/$ThemeSel/modules/$name/".$mod_file.".php")) { $modpath = "themes/$ThemeSel/"; } $modpath .= "modules/$name/".$mod_file.".php"; if (file_exists($modpath)) { include($modpath); } else { define('INDEX_FILE', true); include("header.php"); OpenTable(); if (is_admin($admin)) { echo "
"._HOMEPROBLEM."

[ "._ADDAHOME." ]
"; } else { echo "
"._HOMEPROBLEMUSER."
"; } CloseTable(); include("footer.php"); } } ?>