yllar
2009-01-05 3a0e9a0448bdc4d75f0b0e42d9379f2947494ec8
commit | author | age
8b8bcc 1 <?php
fee8c6 2
8b8bcc 3 ini_set('error_reporting', E_ALL&~E_NOTICE);
T 4 ini_set('display_errors', 1);
5
47124c 6 define('INSTALL_PATH', realpath(dirname(__FILE__) . '/../').'/');
bba657 7 define('RCMAIL_CONFIG_DIR', INSTALL_PATH . 'config');
T 8
afe50a 9 $include_path  = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR;
T 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
47124c 14 set_include_path($include_path);
T 15
fee8c6 16 require_once 'utils.php';
47124c 17
fee8c6 18 session_start();
c06067 19
S 20 $RCI = rcube_install::get_instance();
21 $RCI->load_config();
22
7d7f67 23 if (isset($_GET['_getfile']) && in_array($_GET['_getfile'], array('main', 'db'))) {
T 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   }
c06067 35 }
S 36
32eb29 37 if ($RCI->configured && ($RCI->getprop('enable_installer') || $_SESSION['allowinstaller']) &&
T 38     isset($_GET['_mergeconfig']) && in_array($_GET['_mergeconfig'], array('main', 'db'))) {
e10712 39   $filename = $_GET['_mergeconfig'] . '.inc.php';
T 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
8b8bcc 55 ?>
354978 56 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
T 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>
b1c154 61 <meta name="Robots" content="noindex,nofollow" />
A 62 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
354978 63 <link rel="stylesheet" type="text/css" href="styles.css" />
c5042d 64 <script type="text/javascript" src="client.js"></script>
354978 65 </head>
T 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
967b34 82
T 83   // exit if installation is complete
84   if ($RCI->configured && !$RCI->getprop('enable_installer') && !$_SESSION['allowinstaller']) {
e01084 85     // header("HTTP/1.0 404 Not Found");
967b34 86     echo '<h2 class="error">The installer is disabled!</h2>';
32eb29 87     echo '<p>To enable it again, set <tt>$rcmail_config[\'enable_installer\'] = true;</tt> in RCMAIL_CONFIG_DIR/main.inc.php</p>';
967b34 88     echo '</div></body></html>';
T 89     exit;
90   }
b3f9df 91   
354978 92 ?>
T 93
967b34 94 <h1>RoundCube Webmail Installer</h1>
T 95
354978 96 <ol id="progress">
T 97 <?php
98   
99   foreach (array('Check environment', 'Create config', 'Test config') as $i => $item) {
100     $j = $i + 1;
b3f9df 101     $link = ($RCI->step >= $j || $RCI->configured) ? '<a href="./index.php?_step='.$j.'">' . Q($item) . '</a>' : Q($item);
354978 102     printf('<li class="step%d%s">%s</li>', $j+1, $RCI->step > $j ? ' passed' : ($RCI->step == $j ? ' current' : ''), $link);
T 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">
ad43e6 122   Installer by the RoundCube Dev Team. Copyright &copy; 2008 - Published under the GNU Public License;&nbsp;
T 123   Icons by <a href="http://famfamfam.com">famfamfam</a>
354978 124 </div>
T 125 </body>
126 </html>