summaryrefslogtreecommitdiff
path: root/install.php
blob: 3c709748f36277ef867315bd81ae098547fa0c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
// $Id$

/**
 * @file
 * Initiates a browser-based installation of Drupal.
 */

/**
 * Root directory of Drupal installation.
 */
define('DRUPAL_ROOT', getcwd());

/**
 * Global flag to indicate that site is in installation mode.
 */
define('MAINTENANCE_MODE', 'install');

// Start the installer.
require_once DRUPAL_ROOT . '/includes/install.core.inc';
install_drupal();