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