function install_already_done_error

Indicates that Drupal has already been installed.

2 calls to install_already_done_error()
install_begin_request in drupal/core/includes/install.core.inc
Begins an installation request, modifying the installation state as needed.
install_verify_completed_task in drupal/core/includes/install.core.inc
Verifies and returns the last installation task that was completed.

File

drupal/core/includes/install.core.inc, line 1675
API functions for installing Drupal.

Code

function install_already_done_error() {
  global $base_url;
  drupal_set_title(st('Drupal already installed'));
  return st('<ul><li>To start over, you must empty your existing database, delete your active configuration, and copy <em>default.settings.php</em> over <em>settings.php</em>.</li><li>To install to a different database, edit the appropriate <em>settings.php</em> file in the <em>sites</em> folder.</li><li>To locate your active configuration, view the appropriate <em>settings.php</em> file in the <em>sites</em> folder.</em></li></li><li>To upgrade an existing installation, proceed to the <a href="@base-url/core/update.php">update script</a>.</li><li>View your <a href="@base-url">existing site</a>.</li></ul>', array(
    '@base-url' => $base_url,
  ));
}