]> git.donarmstrong.com Git - roundcube.git/blob - installer/index.php
Imported Upstream version 0.2~stable
[roundcube.git] / installer / index.php
1 <?php
2
3 ini_set('error_reporting', E_ALL&~E_NOTICE);
4 ini_set('display_errors', 1);
5
6 define('INSTALL_PATH', realpath(dirname(__FILE__) . '/../').'/');
7 define('RCMAIL_CONFIG_DIR', INSTALL_PATH . 'config');
8
9 $include_path  = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR;
10 $include_path .= INSTALL_PATH . 'program' . PATH_SEPARATOR;
11 $include_path .= INSTALL_PATH . 'program/include' . PATH_SEPARATOR;
12 $include_path .= ini_get('include_path');
13
14 set_include_path($include_path);
15
16 require_once 'utils.php';
17
18 session_start();
19
20 $RCI = rcube_install::get_instance();
21 $RCI->load_config();
22
23 if (isset($_GET['_getfile']) && in_array($_GET['_getfile'], array('main', 'db'))) {
24   $filename = $_GET['_getfile'] . '.inc.php';
25   if (!empty($_SESSION[$filename])) {
26     header('Content-type: text/plain');
27     header('Content-Disposition: attachment; filename="'.$filename.'"');
28     echo $_SESSION[$filename];
29     exit;
30   }
31   else {
32     header('HTTP/1.0 404 Not found');
33     die("The requested configuration was not found. Please run the installer from the beginning.");
34   }
35 }
36
37 if ($RCI->configured && ($RCI->getprop('enable_installer') || $_SESSION['allowinstaller']) &&
38     isset($_GET['_mergeconfig']) && in_array($_GET['_mergeconfig'], array('main', 'db'))) {
39   $filename = $_GET['_mergeconfig'] . '.inc.php';
40
41   header('Content-type: text/plain');
42   header('Content-Disposition: attachment; filename="'.$filename.'"');
43   
44   $RCI->merge_config();
45   echo $RCI->create_config($_GET['_mergeconfig'], true);
46   exit;
47 }
48
49 // go to 'test' step if we have a local configuration
50 if ($RCI->configured && empty($_REQUEST['_step'])) {
51   header("Location: ./?_step=3");
52   exit;
53 }
54
55 ?>
56 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
57         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
58 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
59 <head>
60 <title>RoundCube Webmail Installer</title>
61 <meta name="Robots" content="noindex,nofollow" />
62 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
63 <link rel="stylesheet" type="text/css" href="styles.css" />
64 <script type="text/javascript" src="client.js"></script>
65 </head>
66
67 <body>
68
69 <div id="banner">
70   <div id="header">
71     <div class="banner-logo"><a href="http://www.roundcube.net"><img src="images/banner_logo.gif" width="200" height="56" border="0" alt="RoundCube Webmal Project" /></a></div>
72     <div class="banner-right"><img src="images/banner_right.gif" width="10" height="56" alt="" /></div>
73   </div>
74   <div id="topnav">
75     <a href="http://trac.roundcube.net/wiki/Howto_Install">How-to Wiki</a>
76   </div>
77  </div>
78
79 <div id="content">
80
81 <?php
82
83   // exit if installation is complete
84   if ($RCI->configured && !$RCI->getprop('enable_installer') && !$_SESSION['allowinstaller']) {
85     // header("HTTP/1.0 404 Not Found");
86     echo '<h2 class="error">The installer is disabled!</h2>';
87     echo '<p>To enable it again, set <tt>$rcmail_config[\'enable_installer\'] = true;</tt> in RCMAIL_CONFIG_DIR/main.inc.php</p>';
88     echo '</div></body></html>';
89     exit;
90   }
91   
92 ?>
93
94 <h1>RoundCube Webmail Installer</h1>
95
96 <ol id="progress">
97 <?php
98   
99   foreach (array('Check environment', 'Create config', 'Test config') as $i => $item) {
100     $j = $i + 1;
101     $link = ($RCI->step >= $j || $RCI->configured) ? '<a href="./index.php?_step='.$j.'">' . Q($item) . '</a>' : Q($item);
102     printf('<li class="step%d%s">%s</li>', $j+1, $RCI->step > $j ? ' passed' : ($RCI->step == $j ? ' current' : ''), $link);
103   }
104 ?>
105 </ol>
106
107 <?php
108 $include_steps = array('welcome.html', 'check.php', 'config.php', 'test.php');
109
110 if ($include_steps[$RCI->step]) {
111   include $include_steps[$RCI->step];
112 }
113 else {
114   header("HTTP/1.0 404 Not Found");
115   echo '<h2 class="error">Invalid step</h2>';
116 }
117
118 ?>
119 </div>
120
121 <div id="footer">
122   Installer by the RoundCube Dev Team. Copyright &copy; 2008 - Published under the GNU Public License;&nbsp;
123   Icons by <a href="http://famfamfam.com">famfamfam</a>
124 </div>
125 </body>
126 </html>