-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.php
155 lines (136 loc) · 4.58 KB
/
install.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<? error_reporting(E_ALL & ~E_NOTICE);
header('Content-Type: text/html; charset=utf-8');
if (isset($_POST['lang'])) {
include_once 'lang/'.$_POST['lang'].'.inc';
include_once 'lang/'.$_POST['lang'].'_config.inc';
} else {
include_once 'lang/ru.inc';
include_once 'lang/ru_config.inc';
}
include_once 'data/functions.inc';
include_once 'data/blocks/pages/m.settings';
$_s['base_url']=".";
if(!file_exists("data/blocks/pages/m.lock")){header('Location: index.php');}
function creat_file_list($s){
if ($h=@opendir($s)) {
while($file=readdir($h)){
$file=$s.'/'.$file;
$p="/[.]/i";
if(!preg_match($p,$file)) {
if(is_dir($file)){
$ff[]=$file;
if($file!='data/sess'){
$dir=creat_file_list($file);
if (!empty($dir)){
foreach($dir as $k => $v ){
$ff[]=$dir[$k];
}
}
}
} else {
$ff[]=$file;
}
}
}
}
return $ff;
}
function check_perm() {
global $_s; ?>
<table border="0" width="100%" cellspacing="0" id="mqconfig">
<?
$files = creat_file_list('data');
$files[]="data";
$files[]="data/blocks/pages/m.settings";
$files[]="data/blocks/pages/m.error404";
$files[]="data/blocks/pages/m.lock";
$files[]="upload";
$files[]="upload/attach";
$files[]="upload/post";
foreach ($files as $k => $i) {
e('<tr><td>'.$i.'</td>');
$perms[$k]=substr(sprintf('%o',fileperms("$i")),-3);
#$perms[$k]=file_perms($i);
if($perms[$k] != "777") { $style='color:red;'; } else { $style='color:green;';}
e('<td style='.$style.'>'.$perms[$k].'</td></tr>');
}
?></table><?
$good=array_diff($perms,array("777"));
if ( $good == Array() ) {
} else {
e('<big style="color:red;"><b>Проверьте права!!!</b></big> Необходимо 777 на все указанные файлы <br>Если у Вас возникают проблемы с проверкой прав, но Вы уверены что права у вас установлены верно, то пропустите этот шаг');
}
?>
<form action="install.php" method="post">
<input type="hidden" name="conf" value="">
<input type="hidden" name="lang" value="<?=$_s['lang'];?>" /><br/>
<input type="submit" value="Next" style="width:100%;">
</form>
<?
}
if(isset($_POST['save'])) {
$title="step 3";
} elseif(isset($_POST['conf'])) {
$title="instalation: configure";
} elseif(isset($_POST['perm'])) {
$title="instalation: check permissions";
} else {
$title="instalation: chose languages";
}
?>
<!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" xml:lang="ru" lang="ru">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link href="templates/style.css" rel="stylesheet" type="text/css" media="screen" />
<title><? e($title); ?></title>
</head>
<body>
<div id="wrapper">
<div id="header">
<div class="logo">
<div class="head">
<? @container('header'); ?>
</div>
</div>
</div>
<div id="middle">
<div id="container">
<div id="content" style="padding:0 150px 0 150px;">
<b class="pl"> </b><b class="pr"> </b><h2 class="title"><? e($title); ?></a></h2>
<div style="padding:15px;">
<?
if(isset($_POST['save'])) {
unlink("data/blocks/pages/m.lock");
e('<br><br>Сайт успешно установлен.<br>Теперь вы можете зайти на сайт как администратор с использованием установленного пароля (<b>форма поиска является и формой входа</b>)<br><div class="c b" style="font-size:18px;"><a href="./">На сайт</a> <a href="./?action=login">Войти как администратор</a></div><br>Mosquito Bloody Mary (mqbm) распространяется на условиях генеральной общественной лицензии версии 3 (GPL v.3) и выше, подробнее <a href="http://mqblog.ru/page/Licenziya">тут</a>');
$_l['install']="done";
save_mqconfig();
} elseif(isset($_POST['conf']) ||isset($_GET['conf'])) {
$lang=$_POST['lang'];
mqconfig();
} elseif(isset($_POST['perm'])) {
$_s['lang']=$_POST['lang'];
check_perm();
}else {
?>
<form action="install.php" method="post">
<?
chose_lang();
?>
<input type="hidden" name="perm" value=""><br/><br/>
<input type="submit" value="Next" style="width:100%;">
</form>
<?
}
?>
</div>
</div><!-- #content-->
</div><!-- #container-->
</div><!-- #middle-->
</div><!-- #wrapper -->
<div id="footer">
<? @container('footer'); ?>
</div><!-- #footer -->
</body>
</html>