thomascube
2008-09-21 7d7f67dde1ef87826bde757bce36bb448aae14e0
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
8b8bcc 48 ?>
354978 49 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
T 50     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
51 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
52 <head>
53 <title>RoundCube Webmail Installer</title>
54 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
55 <link rel="stylesheet" type="text/css" href="styles.css" />
c5042d 56 <script type="text/javascript" src="client.js"></script>
354978 57 </head>
T 58
59 <body>
60
61 <div id="banner">
62   <div id="header">
63     <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>
64     <div class="banner-right"><img src="images/banner_right.gif" width="10" height="56" alt="" /></div>
65   </div>
66   <div id="topnav">
67     <a href="http://trac.roundcube.net/wiki/Howto_Install">How-to Wiki</a>
68   </div>
69  </div>
70
71 <div id="content">
72
73 <?php
967b34 74
T 75   // exit if installation is complete
76   if ($RCI->configured && !$RCI->getprop('enable_installer') && !$_SESSION['allowinstaller']) {
e01084 77     // header("HTTP/1.0 404 Not Found");
967b34 78     echo '<h2 class="error">The installer is disabled!</h2>';
bba657 79     echo '<p>To enable it again, set <tt>$rcmail_config[\'enable_installer\'] = true;</tt> in '.RCMAIL_CONFIG_DIR.'/main.inc.php</p>';
967b34 80     echo '</div></body></html>';
T 81     exit;
82   }
b3f9df 83   
354978 84 ?>
T 85
967b34 86 <h1>RoundCube Webmail Installer</h1>
T 87
354978 88 <ol id="progress">
T 89 <?php
90   
91   foreach (array('Check environment', 'Create config', 'Test config') as $i => $item) {
92     $j = $i + 1;
b3f9df 93     $link = ($RCI->step >= $j || $RCI->configured) ? '<a href="./index.php?_step='.$j.'">' . Q($item) . '</a>' : Q($item);
354978 94     printf('<li class="step%d%s">%s</li>', $j+1, $RCI->step > $j ? ' passed' : ($RCI->step == $j ? ' current' : ''), $link);
T 95   }
96 ?>
97 </ol>
98
99 <?php
100 $include_steps = array('welcome.html', 'check.php', 'config.php', 'test.php');
101
102 if ($include_steps[$RCI->step]) {
103   include $include_steps[$RCI->step];
104 }
105 else {
106   header("HTTP/1.0 404 Not Found");
107   echo '<h2 class="error">Invalid step</h2>';
108 }
109
110 ?>
111 </div>
112
113 <div id="footer">
ad43e6 114   Installer by the RoundCube Dev Team. Copyright &copy; 2008 - Published under the GNU Public License;&nbsp;
T 115   Icons by <a href="http://famfamfam.com">famfamfam</a>
354978 116 </div>
T 117 </body>
118 </html>