-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.php
32 lines (29 loc) · 1.29 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
// +----------------------------------------------------------------------+
// | Planet PHP |
// +----------------------------------------------------------------------+
// | Copyright (c) 2003 |
// +----------------------------------------------------------------------+
// | This program is subject to the GPL license. |
// +----------------------------------------------------------------------+
// | Author: Bitflux GmbH <developer@bitflux.ch> |
// +----------------------------------------------------------------------+
//
// : sitemap.php,v 1.5 2002/03/27 07:59:05 chregu Exp $
//apd_set_session_trace(35);
/*if ($_SERVER['REMOTE_ADDR'] != "80.218.7.144") {
header("HTTP/1.1 503 Service Temporarily Unavailable");
print "<h1>503 Service Temporarily Unavailable</h1>";
print "Software Maintenance. Please come back in a few minutes";
die();
}*/
error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING);
include('./inc/config.inc.php');
ini_set("log_errors",true);
include_once(BX_POPOON_DIR."popoon.php");
if (!isset($_GET['path'])) {
$_GET['path'] = "";
}
$sitemap = new popoon (BX_PROJECT_DIR."/sitemap/sitemap.xml",$_GET["path"],
NULL
);