2006-07-13 13:14:25 +00:00
< ? php
2010-02-17 04:19:51 +00:00
/**
* @ file
* Initiates a browser - based installation of Drupal .
*/
2008-09-20 20:22:25 +00:00
/**
2012-11-29 00:59:17 +00:00
* Defines the root directory of the Drupal installation .
2008-09-20 20:22:25 +00:00
*/
2009-02-08 20:27:51 +00:00
define ( 'DRUPAL_ROOT' , getcwd ());
2008-09-20 20:22:25 +00:00
2008-05-26 17:12:55 +00:00
/**
2012-11-29 00:59:17 +00:00
* Global flag to indicate the site is in installation mode .
2008-05-26 17:12:55 +00:00
*/
2007-11-30 12:19:10 +00:00
define ( 'MAINTENANCE_MODE' , 'install' );
2010-10-22 02:53:19 +00:00
// Exit early if running an incompatible PHP version to avoid fatal errors.
2022-11-18 12:38:07 +00:00
if ( version_compare ( PHP_VERSION , '5.3.3' ) < 0 ) {
print 'Your PHP installation is too old. Drupal requires at least PHP 5.3.3. See the <a href="https://www.drupal.org/docs/7/system-requirements">system requirements</a> page for more information.' ;
2010-10-22 02:53:19 +00:00
exit ;
}
2010-02-17 04:19:51 +00:00
// Start the installer.
require_once DRUPAL_ROOT . '/includes/install.core.inc' ;
install_drupal ();