From bba657e64ff3334ba2f64e88e977a6dc107d682d Mon Sep 17 00:00:00 2001 From: thomascube Date: Fri, 19 Sep 2008 18:26:34 +0000 Subject: Made config files location configurable (#1485215) --- installer/index.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'installer/index.php') diff --git a/installer/index.php b/installer/index.php index 4d0e6c448..ff31667f9 100644 --- a/installer/index.php +++ b/installer/index.php @@ -3,6 +3,8 @@ ini_set('error_reporting', E_ALL&~E_NOTICE); ini_set('display_errors', 1); define('INSTALL_PATH', realpath(dirname(__FILE__) . '/../').'/'); +define('RCMAIL_CONFIG_DIR', INSTALL_PATH . 'config'); + $include_path = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR; $include_path .= INSTALL_PATH . 'program' . PATH_SEPARATOR; $include_path .= INSTALL_PATH . 'program/include' . PATH_SEPARATOR; @@ -68,7 +70,7 @@ if (isset($_GET['_getfile']) && in_array($_GET['_getfile'], array('main', 'db')) if ($RCI->configured && !$RCI->getprop('enable_installer') && !$_SESSION['allowinstaller']) { // header("HTTP/1.0 404 Not Found"); echo '

The installer is disabled!

'; - echo '

To enable it again, set $rcmail_config[\'enable_installer\'] = true; in config/main.inc.php

'; + echo '

To enable it again, set $rcmail_config[\'enable_installer\'] = true; in '.RCMAIL_CONFIG_DIR.'/main.inc.php

'; echo ''; exit; } -- cgit v1.2.3