summaryrefslogtreecommitdiff
path: root/roundcubemail/installer/index.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-03-28 19:42:35 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-03-28 19:42:35 +0000
commitd778536f126953a704ce50b17c9cbdf80bbc3088 (patch)
tree30e8c78066996200e5dad7cdad12486b3f475332 /roundcubemail/installer/index.php
parentfe6712da460a407e25ba0eb4f65b348f3426a20c (diff)
Disable installer by default; add config option to enable it again
git-svn-id: https://svn.roundcube.net/trunk@1222 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/index.php')
-rw-r--r--roundcubemail/installer/index.php15
1 files changed, 13 insertions, 2 deletions
diff --git a/roundcubemail/installer/index.php b/roundcubemail/installer/index.php
index 3b144dfae..69e33f870 100644
--- a/roundcubemail/installer/index.php
+++ b/roundcubemail/installer/index.php
@@ -22,11 +22,11 @@
<div id="content">
-<h1>RoundCube Webmail Installer</h1>
-
<?php
ini_set('error_reporting', E_ALL&~E_NOTICE);
ini_set('display_errors', 1);
+
+ session_start();
$docroot = realpath(dirname(__FILE__) . '/../');
$include_path = $docroot . '/program/lib' . PATH_SEPARATOR . $docroot . '/program' . PATH_SEPARATOR . ini_get('include_path');
@@ -35,9 +35,20 @@
require_once 'rcube_install.php';
$RCI = rcube_install::get_instance();
$RCI->load_config();
+
+ // exit if installation is complete
+ if ($RCI->configured && !$RCI->getprop('enable_installer') && !$_SESSION['allowinstaller']) {
+ header("HTTP/1.0 404 Not Found");
+ echo '<h2 class="error">The installer is disabled!</h2>';
+ echo '<p>To enable it again, set <tt>$rcmail_config[\'enable_installer\'] = true;</tt> in config/main.inc.php</p>';
+ echo '</div></body></html>';
+ exit;
+ }
?>
+<h1>RoundCube Webmail Installer</h1>
+
<ol id="progress">
<?php