commit | author | age
|
8b8bcc
|
1 |
<?php |
fee8c6
|
2 |
|
434869
|
3 |
/* |
T |
4 |
+-------------------------------------------------------------------------+ |
|
5 |
| Roundcube Webmail setup tool | |
d13f32
|
6 |
| Version 0.9-svn | |
434869
|
7 |
| | |
7fe381
|
8 |
| Copyright (C) 2009-2012, The Roundcube Dev Team | |
434869
|
9 |
| | |
7fe381
|
10 |
| This program is free software: you can redistribute it and/or modify | |
T |
11 |
| it under the terms of the GNU General Public License (with exceptions | |
|
12 |
| for skins & plugins) as published by the Free Software Foundation, | |
|
13 |
| either version 3 of the License, or (at your option) any later version. | |
|
14 |
| | |
|
15 |
| This file forms part of the Roundcube Webmail Software for which the | |
|
16 |
| following exception is added: Plugins and Skins which merely make | |
|
17 |
| function calls to the Roundcube Webmail Software, and for that purpose | |
|
18 |
| include it by reference shall not be considered modifications of | |
|
19 |
| the software. | |
|
20 |
| | |
|
21 |
| If you wish to use this file in another project or create a modified | |
|
22 |
| version that will not be part of the Roundcube Webmail Software, you | |
|
23 |
| may remove the exception above and use this source code under the | |
|
24 |
| original version of the license. | |
434869
|
25 |
| | |
T |
26 |
| This program is distributed in the hope that it will be useful, | |
|
27 |
| but WITHOUT ANY WARRANTY; without even the implied warranty of | |
7fe381
|
28 |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
434869
|
29 |
| GNU General Public License for more details. | |
T |
30 |
| | |
7fe381
|
31 |
| You should have received a copy of the GNU General Public License | |
T |
32 |
| along with this program. If not, see http://www.gnu.org/licenses/. | |
434869
|
33 |
| | |
T |
34 |
+-------------------------------------------------------------------------+ |
|
35 |
| Author: Thomas Bruederli <roundcube@gmail.com> | |
|
36 |
+-------------------------------------------------------------------------+ |
|
37 |
|
|
38 |
$Id$ |
|
39 |
|
|
40 |
*/ |
|
41 |
|
d13f32
|
42 |
ini_set('error_reporting', E_ALL &~ (E_NOTICE | E_STRICT)); |
8b8bcc
|
43 |
ini_set('display_errors', 1); |
T |
44 |
|
47124c
|
45 |
define('INSTALL_PATH', realpath(dirname(__FILE__) . '/../').'/'); |
bba657
|
46 |
define('RCMAIL_CONFIG_DIR', INSTALL_PATH . 'config'); |
d13f32
|
47 |
define('RCMAIL_CHARSET', 'UTF-8'); |
bba657
|
48 |
|
afe50a
|
49 |
$include_path = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR; |
T |
50 |
$include_path .= INSTALL_PATH . 'program' . PATH_SEPARATOR; |
|
51 |
$include_path .= INSTALL_PATH . 'program/include' . PATH_SEPARATOR; |
|
52 |
$include_path .= ini_get('include_path'); |
|
53 |
|
47124c
|
54 |
set_include_path($include_path); |
T |
55 |
|
fee8c6
|
56 |
require_once 'utils.php'; |
0c2596
|
57 |
require_once 'rcube_shared.inc'; |
A |
58 |
// deprecated aliases (to be removed) |
1aceb9
|
59 |
require_once 'rcube_bc.inc'; |
47124c
|
60 |
|
fee8c6
|
61 |
session_start(); |
c06067
|
62 |
|
S |
63 |
$RCI = rcube_install::get_instance(); |
|
64 |
$RCI->load_config(); |
|
65 |
|
7d7f67
|
66 |
if (isset($_GET['_getfile']) && in_array($_GET['_getfile'], array('main', 'db'))) { |
T |
67 |
$filename = $_GET['_getfile'] . '.inc.php'; |
|
68 |
if (!empty($_SESSION[$filename])) { |
|
69 |
header('Content-type: text/plain'); |
|
70 |
header('Content-Disposition: attachment; filename="'.$filename.'"'); |
|
71 |
echo $_SESSION[$filename]; |
|
72 |
exit; |
|
73 |
} |
|
74 |
else { |
|
75 |
header('HTTP/1.0 404 Not found'); |
|
76 |
die("The requested configuration was not found. Please run the installer from the beginning."); |
|
77 |
} |
c06067
|
78 |
} |
S |
79 |
|
32eb29
|
80 |
if ($RCI->configured && ($RCI->getprop('enable_installer') || $_SESSION['allowinstaller']) && |
T |
81 |
isset($_GET['_mergeconfig']) && in_array($_GET['_mergeconfig'], array('main', 'db'))) { |
e10712
|
82 |
$filename = $_GET['_mergeconfig'] . '.inc.php'; |
T |
83 |
|
|
84 |
header('Content-type: text/plain'); |
|
85 |
header('Content-Disposition: attachment; filename="'.$filename.'"'); |
403f0b
|
86 |
|
e10712
|
87 |
$RCI->merge_config(); |
T |
88 |
echo $RCI->create_config($_GET['_mergeconfig'], true); |
|
89 |
exit; |
|
90 |
} |
|
91 |
|
b45aed
|
92 |
// go to 'check env' step if we have a local configuration |
e10712
|
93 |
if ($RCI->configured && empty($_REQUEST['_step'])) { |
b45aed
|
94 |
header("Location: ./?_step=1"); |
e10712
|
95 |
exit; |
T |
96 |
} |
|
97 |
|
8b8bcc
|
98 |
?> |
354978
|
99 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
T |
100 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|
101 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
|
102 |
<head> |
e019f2
|
103 |
<title>Roundcube Webmail Installer</title> |
b1c154
|
104 |
<meta name="Robots" content="noindex,nofollow" /> |
A |
105 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
354978
|
106 |
<link rel="stylesheet" type="text/css" href="styles.css" /> |
c5042d
|
107 |
<script type="text/javascript" src="client.js"></script> |
354978
|
108 |
</head> |
T |
109 |
|
|
110 |
<body> |
|
111 |
|
|
112 |
<div id="banner"> |
e6bb83
|
113 |
<div class="banner-bg"></div> |
c04b23
|
114 |
<div class="banner-logo"><a href="http://roundcube.net"><img src="images/roundcube_logo.png" width="210" height="55" border="0" alt="Roundcube - open source webmail software" /></a></div> |
e6bb83
|
115 |
</div> |
T |
116 |
|
|
117 |
<div id="topnav"> |
|
118 |
<a href="http://trac.roundcube.net/wiki/Howto_Install">How-to Wiki</a> |
|
119 |
</div> |
354978
|
120 |
|
T |
121 |
<div id="content"> |
|
122 |
|
|
123 |
<?php |
967b34
|
124 |
|
T |
125 |
// exit if installation is complete |
|
126 |
if ($RCI->configured && !$RCI->getprop('enable_installer') && !$_SESSION['allowinstaller']) { |
e01084
|
127 |
// header("HTTP/1.0 404 Not Found"); |
967b34
|
128 |
echo '<h2 class="error">The installer is disabled!</h2>'; |
32eb29
|
129 |
echo '<p>To enable it again, set <tt>$rcmail_config[\'enable_installer\'] = true;</tt> in RCMAIL_CONFIG_DIR/main.inc.php</p>'; |
967b34
|
130 |
echo '</div></body></html>'; |
T |
131 |
exit; |
|
132 |
} |
b3f9df
|
133 |
|
354978
|
134 |
?> |
T |
135 |
|
e019f2
|
136 |
<h1>Roundcube Webmail Installer</h1> |
967b34
|
137 |
|
354978
|
138 |
<ol id="progress"> |
T |
139 |
<?php |
|
140 |
|
|
141 |
foreach (array('Check environment', 'Create config', 'Test config') as $i => $item) { |
|
142 |
$j = $i + 1; |
b3f9df
|
143 |
$link = ($RCI->step >= $j || $RCI->configured) ? '<a href="./index.php?_step='.$j.'">' . Q($item) . '</a>' : Q($item); |
354978
|
144 |
printf('<li class="step%d%s">%s</li>', $j+1, $RCI->step > $j ? ' passed' : ($RCI->step == $j ? ' current' : ''), $link); |
T |
145 |
} |
|
146 |
?> |
|
147 |
</ol> |
|
148 |
|
|
149 |
<?php |
c04b23
|
150 |
$include_steps = array('', './check.php', './config.php', './test.php'); |
354978
|
151 |
|
T |
152 |
if ($include_steps[$RCI->step]) { |
|
153 |
include $include_steps[$RCI->step]; |
|
154 |
} |
|
155 |
else { |
|
156 |
header("HTTP/1.0 404 Not Found"); |
|
157 |
echo '<h2 class="error">Invalid step</h2>'; |
|
158 |
} |
|
159 |
|
|
160 |
?> |
|
161 |
</div> |
|
162 |
|
|
163 |
<div id="footer"> |
c04b23
|
164 |
Installer by the Roundcube Dev Team. Copyright © 2008-2012 – Published under the GNU Public License; |
ad43e6
|
165 |
Icons by <a href="http://famfamfam.com">famfamfam</a> |
354978
|
166 |
</div> |
T |
167 |
</body> |
|
168 |
</html> |