source: subversion/trunk/roundcubemail/installer/index.php @ 1144

Last change on this file since 1144 was 1144, checked in by thomasb, 5 years ago

Allow to skip the config step if config files already exist

File size: 2.1 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4<head>
5<title>RoundCube Webmail Installer</title>
6<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
7<link rel="stylesheet" type="text/css" href="styles.css" />
8<script type="text/javascript" src="client.js"></script>
9</head>
10
11<body>
12
13<div id="banner">
14  <div id="header">
15    <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>
16    <div class="banner-right"><img src="images/banner_right.gif" width="10" height="56" alt="" /></div>
17  </div>
18  <div id="topnav">
19    <a href="http://trac.roundcube.net/wiki/Howto_Install">How-to Wiki</a>
20  </div>
21 </div>
22
23<div id="content">
24
25<h1>RoundCube Webmail Installer</h1>
26
27<?php
28
29  ini_set('display_errors', 1);
30
31  $docroot = realpath(dirname(__FILE__) . '/../');
32  $include_path  = $docroot . '/program/lib' . PATH_SEPARATOR . $docroot . '/program' . PATH_SEPARATOR . ini_get('include_path');
33  set_include_path($include_path);
34
35  require_once 'rcube_install.php';
36  $RCI = rcube_install::get_instance();
37  $RCI->load_config();
38 
39?>
40
41<ol id="progress">
42<?php
43 
44  foreach (array('Check environment', 'Create config', 'Test config') as $i => $item) {
45    $j = $i + 1;
46    $link = ($RCI->step >= $j || $RCI->configured) ? '<a href="./index.php?_step='.$j.'">' . Q($item) . '</a>' : Q($item);
47    printf('<li class="step%d%s">%s</li>', $j+1, $RCI->step > $j ? ' passed' : ($RCI->step == $j ? ' current' : ''), $link);
48  }
49?>
50</ol>
51
52<?php
53
54$include_steps = array('welcome.html', 'check.php', 'config.php', 'test.php');
55
56if ($include_steps[$RCI->step]) {
57  include $include_steps[$RCI->step];
58}
59else {
60  header("HTTP/1.0 404 Not Found");
61  echo '<h2 class="error">Invalid step</h2>';
62}
63
64?>
65</div>
66
67<div id="footer">
68  Installer by the RoundCube Dev Team. Copyright &copy; 2008 - Published under the GNU Public License;&nbsp;
69  Icons by <a href="http://famfamfam.com">famfamfam</a>
70</div>
71</body>
72</html>
Note: See TracBrowser for help on using the repository browser.