Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for Zend Encoder/SafeGuard & PhpExpress)
  6. *
  7. * @ Version : 2.0.0.4
  8. * @ Author : DeZender
  9. * @ Release on : 21.10.2015
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. require_once "engine.php";
  15. $current_installed_server = $_SERVER["HTTP_HOST"];
  16. $current_installed_server_explode = explode(".", $current_installed_server);
  17. if (count($current_installed_server_explode) != 1) {
  18. $last_ex = count($current_installed_server_explode) - 1;
  19. $last_ex2 = count($current_installed_server_explode) - 2;
  20. $current_installed_server = $current_installed_server_explode[$last_ex2] . "." . $current_installed_server_explode[$last_ex];
  21. }
  22. if ($_SERVER["HTTP_HOST"] != "localhost" && $current_installed_server != "geekgates.com") {
  23. exit();
  24. }
  25. if (!isset($_SESSION["visited"])) {
  26. $update_category = $db->rawQuery("UPDATE " . $table_prefix . "defines SET define_value = define_value + 1 where `define_name` = 'visitors' limit 1;");
  27. $_SESSION["visited"] = true;
  28. }
  29. isset($_GET["a"]) ? ($a = $_GET["a"]) : ($a = "home");
  30. isset($_GET["b"]) ? ($b = $_GET["b"]) : ($b = null);
  31. isset($_GET["id"]) ? ($id = $_GET["id"]) : ($id = null);
  32. $parent_categories = (array());
  33. $category_results = (array());
  34. $sub_categories_results = (array());
  35. $sub_files_results = (array());
  36. $category_count = (array());
  37. $file_results = (array());
  38. $file_category_results = (array());
  39. $file_user_results = (array());
  40. $template_footer_code = "";
  41. $contact_page = false;
  42. $file_page = false;
  43. $ads_results = (array());
  44. $search_files_results = (array());
  45. $search_categories_fresults = (array());
  46. $search_results_empty = false;
  47. $search_results_show = false;
  48. $search_category_results = (array());
  49. $page_title = false;
  50. $ads_results["728x90"] = $db->rawQuery("SELECT * from " . $table_prefix . "ads where `ad_placehold` = '728 x 90' AND `ad_status` = '1' ORDER BY rand() limit 1");
  51. if (0 < count($ads_results["728x90"])) {
  52. ..............................................................
  53. ...........................
  54. .........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement