install_already_done_error

Versions
mediamosa-21
install_already_done_error()

Indicate that Drupal has already been installed.

▾ 3 functions call install_already_done_error()

install_begin_request in includes/install.core.inc
Begin an installation request, modifying the installation state as needed.
install_configure_form in includes/install.core.inc
Installation task; configure settings for the new site.
install_verify_completed_task in includes/install.core.inc
Verify and return the last installation task that was completed.

Code

includes/install.core.inc, line 1282

<?php
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.</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 upgrade an existing installation, proceed to the <a href="@base-url/update.php">update script</a>.</li><li>View your <a href="@base-url">existing site</a>.</li></ul>', array('@base-url' => $base_url));
}
?>