Make WordPress Core


Ignore:
Timestamp:
06/29/2011 04:46:46 PM (14 years ago)
Author:
nacin
Message:

wp_check_php_mysql_versions() during setup and install. see #17934.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/setup-config.php

    r17622 r18374  
    4141
    4242require_once(ABSPATH . WPINC . '/load.php');
     43require_once(ABSPATH . WPINC . '/version.php');
     44wp_check_php_mysql_versions();
     45
    4346require_once(ABSPATH . WPINC . '/compat.php');
    4447require_once(ABSPATH . WPINC . '/functions.php');
    4548require_once(ABSPATH . WPINC . '/class-wp-error.php');
    46 require_once(ABSPATH . WPINC . '/version.php');
    4749
    4850if (!file_exists(ABSPATH . 'wp-config-sample.php'))
     
    5860if (file_exists(ABSPATH . '../wp-config.php') && ! file_exists(ABSPATH . '../wp-settings.php'))
    5961    wp_die("<p>The file 'wp-config.php' already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try <a href='install.php'>installing now</a>.</p>");
    60 
    61 if ( version_compare( $required_php_version, phpversion(), '>' ) )
    62     wp_die( sprintf( /*WP_I18N_OLD_PHP*/'Your server is running PHP version %1$s but WordPress requires at least %2$s.'/*/WP_I18N_OLD_PHP*/, phpversion(), $required_php_version ) );
    63 
    64 if ( !extension_loaded('mysql') && !file_exists(ABSPATH . 'wp-content/db.php') )
    65     wp_die( /*WP_I18N_OLD_MYSQL*/'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.'/*/WP_I18N_OLD_MYSQL*/ );
    6662
    6763if (isset($_GET['step']))
Note: See TracChangeset for help on using the changeset viewer.