forked from Lorex/TravianZ_TW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
126 lines (112 loc) · 3.64 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php include("templates/script.tpl");
if(!isset($_GET['s'])) {
$_GET['s']=0;
}
$tz=(isset($_GET['t']))? $_GET['t']:1;
switch($tz) {
case 1: $t_zone="Africa/Dakar";break;
case 2: $t_zone="America/New_York";break;
case 3: $t_zone="Antarctica/Casey";break;
case 4: $t_zone="Arctic/Longyearbyen";break;
case 5: $t_zone="Asia/Kuala_Lumpur";break;
case 6: $t_zone="Atlantic/Azores";break;
case 7: $t_zone="Australia/Melbourne";break;
case 8: $t_zone="Europe/Bucharest";break;
case 9: $t_zone="Europe/London";break;
case 10: $t_zone="Indian/Maldives";break;
case 11: $t_zone="Pacific/Fiji";break;
}
date_default_timezone_set($t_zone);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>TravianZ Installation</title>
<link rel="shortcut icon" href="favicon.ico" />
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="imagetoolbar" content="no" />
<meta http-equiv="content-type" content="text/html; charset=us-ascii" />
<script src="mt-full.js?0ac36" type="text/javascript"></script>
<script src="unx.js?0ac36" type="text/javascript"></script>
<script src="new.js?0ac36" type="text/javascript"></script>
<link href="../gpack/travian_default/lang/en/lang.css?f4b7c" rel="stylesheet" type="text/css" />
<link href="../gpack/travian_default/lang/en/compact.css?f4b7c" rel="stylesheet" type="text/css" />
<link href="../gpack/travian_default/travian.css?e21d2" rel="stylesheet" type="text/css" />
<link href="../gpack/travian_default/lang/en/lang.css?e21d2" rel="stylesheet" type="text/css" />
</head>
<body>
<script LANGUAGE="JavaScript">
function refresh(tz) {
var dt = new Array();
dt=tz.split(",");
tz=dt[0];
location="?s=1&t="+tz;
}
function proceed() {
document.dataform.Submit.disabled=true;
return(true);
}
</script>
<div class="wrapper">
<img class="c1" src="img/x.gif" id="msfilter" alt="" name="msfilter" />
<div id="dynamic_header"></div>
<div id="header">
<div id="mtop"></div>
</div>
<div id="mid">
<div id="side_navi">
<?php include("templates/menu.tpl"); ?>
</div>
<div id="content" class="login">
<?php
IHG_Progressbar::draw_css();
$bar = new IHG_Progressbar(7, 'Step %d from %d ');
$bar->draw();
for($i = 0; $i < ($_GET['s']+1); $i++) {
$bar->tick();
}
?>
<div class="headline"><center>
<span class="f18 c5">TravianZ Installation Script</span>
</center></div>
<?php
if(substr(sprintf('%o', fileperms('../')), -4)<'700'){
echo"<span class='f18 c5'>ERROR!</span><br />It's not possible to write the config file. Change the permission to '777'. After that, refresh this page!";
} else
switch($_GET['s']){
case 0:
include("templates/greet.tpl");
break;
case 1:
include("templates/config.tpl");
break;
case 2:
include("templates/dataform.tpl");
break;
case 3:
include("templates/field.tpl");
break;
case 4:
include("templates/multihunter.tpl");
break;
case 5:
include("templates/oasis.tpl");
break;
case 6:
include("templates/end.tpl");
break;
}
?>
<div id="side_info" class="outgame"></div>
<div class="clear"></div>
</div>
<div class="footer-stopper outgame"></div>
<div class="clear"></div>
<?php include("../Templates/footer.tpl"); ?>
</div>
<div id="ce"></div>
</body>
</html>