Make WordPress Core

Ticket #11881: 11881.5.diff

File 11881.5.diff, 49.0 KB (added by nacin, 15 years ago)

Fixes ordering of some MU/MS defines/includes

  • wp-admin/setup-config.php

     
    3131define('ABSPATH', dirname(dirname(__FILE__)).'/');
    3232define('WPINC', 'wp-includes');
    3333define('WP_CONTENT_DIR', ABSPATH . 'wp-content');
     34define('WP_DEBUG', false);
    3435/**#@-*/
    3536
     37require_once(ABSPATH . WPINC . '/load.php');
    3638require_once(ABSPATH . WPINC . '/compat.php');
    3739require_once(ABSPATH . WPINC . '/functions.php');
    3840require_once(ABSPATH . WPINC . '/classes.php');
  • wp-includes/default-constants.php

     
     1<?php
     2
     3/**
     4 * Defines constants and global variables that can be overridden, generally in wp-config.php.
     5 *
     6 * @package WordPress
     7 */
     8
     9/**
     10 * Defines WordPress default constants.
     11 *
     12 * @since 3.0.0
     13 * @param $context
     14 */
     15function wp_default_constants( $context ) {
     16
     17        switch( $context ) {
     18
     19                case 'init' :
     20
     21                        // set memory limits
     22                        if ( !defined('WP_MEMORY_LIMIT') ) {
     23                                if( is_multisite() ) {
     24                                        define('WP_MEMORY_LIMIT', '64M');
     25                                } else {
     26                                        define('WP_MEMORY_LIMIT', '32M');
     27                                }
     28                        }
     29                       
     30                        /**
     31                         * The $blog_id global, which you can change in the config allows you to create a simple
     32                         * multiple blog installation using just one WordPress and changing $blog_id around.
     33                         *
     34                         * @global int $blog_id
     35                         * @since 2.0.0
     36                         */
     37                        if ( ! isset($blog_id) )
     38                                $blog_id = 1;
     39                       
     40                        // set memory limits.
     41                        if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < abs(intval(WP_MEMORY_LIMIT)) ) )
     42                                @ini_set('memory_limit', WP_MEMORY_LIMIT);
     43                       
     44                        if ( !defined('WP_CONTENT_DIR') )
     45                                define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); // no trailing slash, full paths only - WP_CONTENT_URL is defined further down
     46                       
     47                        // Add define('WP_DEBUG', true); to wp-config.php to enable display of notices during development.
     48                        if ( !defined('WP_DEBUG') )
     49                                define( 'WP_DEBUG', false );
     50                       
     51                        // Add define('WP_DEBUG_DISPLAY', false); to wp-config.php to use the globally configured setting for display_errors and not force it to On
     52                        if ( !defined('WP_DEBUG_DISPLAY') )
     53                                define( 'WP_DEBUG_DISPLAY', true );
     54                       
     55                        // Add define('WP_DEBUG_LOG', true); to enable php debug logging to WP_CONTENT_DIR/debug.log
     56                        if ( !defined('WP_DEBUG_LOG') )
     57                                define('WP_DEBUG_LOG', false);
     58                       
     59                        if ( !defined('WP_CACHE') )
     60                                define('WP_CACHE', false);
     61                       
     62                        /**
     63                         * Private
     64                         */
     65                        if ( !defined('MEDIA_TRASH') )
     66                                define('MEDIA_TRASH', false);
     67                       
     68                        if ( !defined('SHORTINIT') )
     69                                define('SHORTINIT', false);
     70                        break;
     71
     72                case 'wp_included':
     73
     74                        if ( !defined('WP_CONTENT_URL') )
     75                                define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up
     76               
     77                        /**
     78                         * Allows for the plugins directory to be moved from the default location.
     79                         *
     80                         * @since 2.6.0
     81                         */
     82                        if ( !defined('WP_PLUGIN_DIR') )
     83                                define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins' ); // full path, no trailing slash
     84               
     85                        /**
     86                         * Allows for the plugins directory to be moved from the default location.
     87                         *
     88                         * @since 2.6.0
     89                         */
     90                        if ( !defined('WP_PLUGIN_URL') )
     91                                define( 'WP_PLUGIN_URL', WP_CONTENT_URL . '/plugins' ); // full url, no trailing slash
     92               
     93                        /**
     94                         * Allows for the plugins directory to be moved from the default location.
     95                         *
     96                         * @since 2.1.0
     97                         */
     98                        if ( !defined('PLUGINDIR') )
     99                                define( 'PLUGINDIR', 'wp-content/plugins' ); // Relative to ABSPATH.  For back compat.
     100                        break;
     101
     102                case 'ms_network_settings_loaded':
     103
     104                        /**
     105                         * Allows for the mu-plugins directory to be moved from the default location.
     106                         *
     107                         * @since 2.8.0
     108                         */
     109                        if ( !defined('WPMU_PLUGIN_DIR') )
     110                                define( 'WPMU_PLUGIN_DIR', WP_CONTENT_DIR . '/mu-plugins' ); // full path, no trailing slash
     111               
     112                        /**
     113                         * Allows for the mu-plugins directory to be moved from the default location.
     114                         *
     115                         * @since 2.8.0
     116                         */
     117                        if ( !defined('WPMU_PLUGIN_URL') )
     118                                define( 'WPMU_PLUGIN_URL', WP_CONTENT_URL . '/mu-plugins' ); // full url, no trailing slash
     119               
     120                        /**
     121                         * Allows for the mu-plugins directory to be moved from the default location.
     122                         *
     123                         * @since 2.8.0
     124                         */
     125                        if ( !defined( 'MUPLUGINDIR' ) )
     126                                define( 'MUPLUGINDIR', 'wp-content/mu-plugins' ); // Relative to ABSPATH.  For back compat.
     127                        break;
     128
     129                case 'ms_loaded';
     130
     131                        global $wp_default_secret_key;
     132               
     133                        /**
     134                         * Used to guarantee unique hash cookies
     135                         * @since 1.5
     136                         */
     137                        if( !defined('COOKIEHASH') )
     138                                        define('COOKIEHASH', md5(get_option('siteurl')));
     139               
     140                        /**
     141                         * Should be exactly the same as the default value of SECRET_KEY in wp-config-sample.php
     142                         * @since 2.5.0
     143                         */
     144                        $wp_default_secret_key = 'put your unique phrase here';
     145               
     146                        /**
     147                         * It is possible to define this in wp-config.php
     148                         * @since 2.0.0
     149                         */
     150                        if ( !defined('USER_COOKIE') )
     151                                define('USER_COOKIE', 'wordpressuser_' . COOKIEHASH);
     152               
     153                        /**
     154                         * It is possible to define this in wp-config.php
     155                         * @since 2.0.0
     156                         */
     157                        if ( !defined('PASS_COOKIE') )
     158                                define('PASS_COOKIE', 'wordpresspass_' . COOKIEHASH);
     159               
     160                        /**
     161                         * It is possible to define this in wp-config.php
     162                         * @since 2.5.0
     163                         */
     164                        if ( !defined('AUTH_COOKIE') )
     165                                define('AUTH_COOKIE', 'wordpress_' . COOKIEHASH);
     166               
     167                        /**
     168                         * It is possible to define this in wp-config.php
     169                         * @since 2.6.0
     170                         */
     171                        if ( !defined('SECURE_AUTH_COOKIE') )
     172                                define('SECURE_AUTH_COOKIE', 'wordpress_sec_' . COOKIEHASH);
     173               
     174                        /**
     175                         * It is possible to define this in wp-config.php
     176                         * @since 2.6.0
     177                         */
     178                        if ( !defined('LOGGED_IN_COOKIE') )
     179                                define('LOGGED_IN_COOKIE', 'wordpress_logged_in_' . COOKIEHASH);
     180               
     181                        /**
     182                         * It is possible to define this in wp-config.php
     183                         * @since 2.3.0
     184                         */
     185                        if ( !defined('TEST_COOKIE') )
     186                                define('TEST_COOKIE', 'wordpress_test_cookie');
     187               
     188                        /**
     189                         * It is possible to define this in wp-config.php
     190                         * @since 1.2.0
     191                         */
     192                        if ( !defined('COOKIEPATH') )
     193                                define('COOKIEPATH', preg_replace('|https?://[^/]+|i', '', get_option('home') . '/' ) );
     194               
     195                        /**
     196                         * It is possible to define this in wp-config.php
     197                         * @since 1.5.0
     198                         */
     199                        if ( !defined('SITECOOKIEPATH') )
     200                                define('SITECOOKIEPATH', preg_replace('|https?://[^/]+|i', '', get_option('siteurl') . '/' ) );
     201               
     202                        /**
     203                         * It is possible to define this in wp-config.php
     204                         * @since 2.6.0
     205                         */
     206                        if ( !defined('ADMIN_COOKIE_PATH') )
     207                                define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH . 'wp-admin' );
     208               
     209                        /**
     210                         * It is possible to define this in wp-config.php
     211                         * @since 2.6.0
     212                         */
     213                        if ( !defined('PLUGINS_COOKIE_PATH') )
     214                                define( 'PLUGINS_COOKIE_PATH', preg_replace('|https?://[^/]+|i', '', WP_PLUGIN_URL)  );
     215               
     216                        /**
     217                         * It is possible to define this in wp-config.php
     218                         * @since 2.0.0
     219                         */
     220                        if ( !defined('COOKIE_DOMAIN') )
     221                                define('COOKIE_DOMAIN', false);
     222               
     223                        /**
     224                         * It is possible to define this in wp-config.php
     225                         * @since 2.6.0
     226                         */
     227                        if ( !defined('FORCE_SSL_ADMIN') )
     228                                define('FORCE_SSL_ADMIN', false);
     229                        force_ssl_admin(FORCE_SSL_ADMIN);
     230               
     231                        /**
     232                         * It is possible to define this in wp-config.php
     233                         * @since 2.6.0
     234                         */
     235                        if ( !defined('FORCE_SSL_LOGIN') )
     236                                define('FORCE_SSL_LOGIN', false);
     237                        force_ssl_login(FORCE_SSL_LOGIN);
     238               
     239                        /**
     240                         * It is possible to define this in wp-config.php
     241                         * @since 2.5.0
     242                         */
     243                        if ( !defined( 'AUTOSAVE_INTERVAL' ) )
     244                                define( 'AUTOSAVE_INTERVAL', 60 );
     245               
     246                        /**
     247                         * It is possible to define this in wp-config.php
     248                         * @since 2.9.0
     249                         */
     250                        if ( !defined( 'EMPTY_TRASH_DAYS' ) )
     251                                define( 'EMPTY_TRASH_DAYS', 30 );
     252                        break;
     253
     254                case 'plugins_loaded':
     255
     256                        if ( !defined('WP_POST_REVISIONS') )
     257                        define('WP_POST_REVISIONS', true);
     258                        break;
     259
     260                case 'setup_theme':
     261
     262                        /**
     263                         * Web Path to the current active template directory
     264                         * @since 1.5.0
     265                         */
     266                        define('TEMPLATEPATH', get_template_directory());
     267               
     268                        /**
     269                         * Web Path to the current active template stylesheet directory
     270                         * @since 2.1.0
     271                         */
     272                        define('STYLESHEETPATH', get_stylesheet_directory());
     273                        break;
     274
     275        }
     276
     277}
     278
     279?>
     280 No newline at end of file
  • wp-includes/load.php

     
     1<?php
     2
     3/**
     4 * These functions are needed to load WordPress.
     5 *
     6 * @package WordPress
     7 */
     8
     9/**
     10 * Turn register globals off.
     11 *
     12 * @access private
     13 * @since 2.1.0
     14 * @return null Will return null if register_globals PHP directive was disabled
     15 */
     16function wp_unregister_GLOBALS() {
     17        if ( !ini_get('register_globals') )
     18                return;
     19
     20        if ( isset($_REQUEST['GLOBALS']) )
     21                die('GLOBALS overwrite attempt detected');
     22
     23        // Variables that shouldn't be unset
     24        $noUnset = array('GLOBALS', '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES', 'table_prefix');
     25
     26        $input = array_merge($_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_FILES, isset($_SESSION) && is_array($_SESSION) ? $_SESSION : array());
     27        foreach ( $input as $k => $v )
     28                if ( !in_array($k, $noUnset) && isset($GLOBALS[$k]) ) {
     29                        $GLOBALS[$k] = NULL;
     30                        unset($GLOBALS[$k]);
     31                }
     32}
     33
     34function wp_fix_server_vars() {
     35        global $PHP_SELF;
     36        // Fix for IIS when running with PHP ISAPI
     37        if ( empty( $_SERVER['REQUEST_URI'] ) || ( php_sapi_name() != 'cgi-fcgi' && preg_match( '/^Microsoft-IIS\//', $_SERVER['SERVER_SOFTWARE'] ) ) ) {
     38
     39                // IIS Mod-Rewrite
     40                if (isset($_SERVER['HTTP_X_ORIGINAL_URL'])) {
     41                        $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL'];
     42                }
     43                // IIS Isapi_Rewrite
     44                else if (isset($_SERVER['HTTP_X_REWRITE_URL'])) {
     45                        $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_REWRITE_URL'];
     46                }
     47                else
     48                {
     49                        // Use ORIG_PATH_INFO if there is no PATH_INFO
     50                        if ( !isset($_SERVER['PATH_INFO']) && isset($_SERVER['ORIG_PATH_INFO']) )
     51                                $_SERVER['PATH_INFO'] = $_SERVER['ORIG_PATH_INFO'];
     52
     53                        // Some IIS + PHP configurations puts the script-name in the path-info (No need to append it twice)
     54                        if ( isset($_SERVER['PATH_INFO']) ) {
     55                                if ( $_SERVER['PATH_INFO'] == $_SERVER['SCRIPT_NAME'] )
     56                                        $_SERVER['REQUEST_URI'] = $_SERVER['PATH_INFO'];
     57                                else
     58                                        $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . $_SERVER['PATH_INFO'];
     59                        }
     60
     61                        // Append the query string if it exists and isn't null
     62                        if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) {
     63                                $_SERVER['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
     64                        }
     65                }
     66        }
     67
     68        // Fix for PHP as CGI hosts that set SCRIPT_FILENAME to something ending in php.cgi for all requests
     69        if ( isset($_SERVER['SCRIPT_FILENAME']) && ( strpos($_SERVER['SCRIPT_FILENAME'], 'php.cgi') == strlen($_SERVER['SCRIPT_FILENAME']) - 7 ) )
     70                $_SERVER['SCRIPT_FILENAME'] = $_SERVER['PATH_TRANSLATED'];
     71
     72        // Fix for Dreamhost and other PHP as CGI hosts
     73        if (strpos($_SERVER['SCRIPT_NAME'], 'php.cgi') !== false)
     74                unset($_SERVER['PATH_INFO']);
     75
     76        // Fix empty PHP_SELF
     77        $PHP_SELF = $_SERVER['PHP_SELF'];
     78        if ( empty($PHP_SELF) )
     79                $_SERVER['PHP_SELF'] = $PHP_SELF = preg_replace("/(\?.*)?$/",'',$_SERVER["REQUEST_URI"]);
     80}
     81
     82function wp_check_php_mysql_versions() {
     83        // we can probably extend this function to check if wp_die() exists then use translated strings, and then use it in install.php etc.
     84
     85        global $required_php_version, $wp_version;
     86        $php_version = phpversion();
     87        if ( version_compare( $required_php_version, $php_version, '>' ) )
     88                die( sprintf( /*WP_I18N_OLD_PHP*/'Your server is running PHP version %1$s but WordPress %2%s requires at least %2%s.'/*/WP_I18N_OLD_PHP*/, $php_version, $wp_version, $required_php_version ) );
     89
     90        if ( !extension_loaded('mysql') && !file_exists(WP_CONTENT_DIR . '/db.php') )
     91                die( /*WP_I18N_OLD_MYSQL*/'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.'/*/WP_I18N_OLD_MYSQL*/ );
     92}
     93
     94function wp_maintenance() {
     95        if ( file_exists(ABSPATH . '.maintenance') && !defined('WP_INSTALLING') ) {
     96                include(ABSPATH . '.maintenance');
     97                // If the $upgrading timestamp is older than 10 minutes, don't die.
     98                if ( ( time() - $upgrading ) < 600 ) {
     99                        if ( file_exists( WP_CONTENT_DIR . '/maintenance.php' ) ) {
     100                                require_once( WP_CONTENT_DIR . '/maintenance.php' );
     101                                die();
     102                        }
     103
     104                        $protocol = $_SERVER["SERVER_PROTOCOL"];
     105                        if ( 'HTTP/1.1' != $protocol && 'HTTP/1.0' != $protocol )
     106                                $protocol = 'HTTP/1.0';
     107                        header( "$protocol 503 Service Unavailable", true, 503 );
     108                        header( 'Content-Type: text/html; charset=utf-8' );
     109                        header( 'Retry-After: 600' );
     110        ?>
     111        <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     112        <html xmlns="http://www.w3.org/1999/xhtml">
     113        <head>
     114        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     115                <title>Maintenance</title>
     116
     117        </head>
     118        <body>
     119                <h1>Briefly unavailable for scheduled maintenance. Check back in a minute.</h1>
     120        </body>
     121        </html>
     122        <?php
     123                        die();
     124                }
     125        }
     126}
     127
     128/**
     129 * PHP 4 standard microtime start capture.
     130 *
     131 * @access private
     132 * @since 0.71
     133 * @global int $timestart Seconds and Microseconds added together from when function is called.
     134 * @return bool Always returns true.
     135 */
     136function timer_start() {
     137        global $timestart;
     138        $mtime = explode(' ', microtime() );
     139        $mtime = $mtime[1] + $mtime[0];
     140        $timestart = $mtime;
     141        return true;
     142}
     143
     144/**
     145 * Return and/or display the time from the page start to when function is called.
     146 *
     147 * You can get the results and print them by doing:
     148 * <code>
     149 * $nTimePageTookToExecute = timer_stop();
     150 * echo $nTimePageTookToExecute;
     151 * </code>
     152 *
     153 * Or instead, you can do:
     154 * <code>
     155 * timer_stop(1);
     156 * </code>
     157 * which will do what the above does. If you need the result, you can assign it to a variable, but
     158 * most cases, you only need to echo it.
     159 *
     160 * @since 0.71
     161 * @global int $timestart Seconds and Microseconds added together from when timer_start() is called
     162 * @global int $timeend  Seconds and Microseconds added together from when function is called
     163 *
     164 * @param int $display Use '0' or null to not echo anything and 1 to echo the total time
     165 * @param int $precision The amount of digits from the right of the decimal to display. Default is 3.
     166 * @return float The "second.microsecond" finished time calculation
     167 */
     168function timer_stop($display = 0, $precision = 3) { //if called like timer_stop(1), will echo $timetotal
     169        global $timestart, $timeend;
     170        $mtime = microtime();
     171        $mtime = explode(' ',$mtime);
     172        $mtime = $mtime[1] + $mtime[0];
     173        $timeend = $mtime;
     174        $timetotal = $timeend-$timestart;
     175        $r = ( function_exists('number_format_i18n') ) ? number_format_i18n($timetotal, $precision) : number_format($timetotal, $precision);
     176        if ( $display )
     177                echo $r;
     178        return $r;
     179}
     180
     181function wp_debug_mode() {
     182        if ( WP_DEBUG ) {
     183                if ( defined('E_DEPRECATED') )
     184                        error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT);
     185                else
     186                        error_reporting(E_ALL);
     187
     188                if ( WP_DEBUG_DISPLAY )
     189                        ini_set('display_errors', 1);
     190
     191                if ( WP_DEBUG_LOG ) {
     192                        ini_set('log_errors', 1);
     193                        ini_set('error_log', WP_CONTENT_DIR . '/debug.log');
     194                }
     195        } else {
     196                if ( defined('E_RECOVERABLE_ERROR') )
     197                        error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR);
     198                else
     199                        error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);
     200        }
     201}
     202
     203function wp_set_lang_dir() {
     204        if ( !defined('WP_LANG_DIR') ) {
     205                /**
     206                 * Stores the location of the language directory. First looks for language folder in WP_CONTENT_DIR
     207                 * and uses that folder if it exists. Or it uses the "languages" folder in WPINC.
     208                 *
     209                 * @since 2.1.0
     210                 */
     211                if ( file_exists(WP_CONTENT_DIR . '/languages') && @is_dir(WP_CONTENT_DIR . '/languages') ) {
     212                        define('WP_LANG_DIR', WP_CONTENT_DIR . '/languages'); // no leading slash, no trailing slash, full path, not relative to ABSPATH
     213                        if (!defined('LANGDIR')) {
     214                                // Old static relative path maintained for limited backwards compatibility - won't work in some cases
     215                                define('LANGDIR', 'wp-content/languages');
     216                        }
     217                } else {
     218                        define('WP_LANG_DIR', ABSPATH . WPINC . '/languages'); // no leading slash, no trailing slash, full path, not relative to ABSPATH
     219                        if (!defined('LANGDIR')) {
     220                                // Old relative path maintained for backwards compatibility
     221                                define('LANGDIR', WPINC . '/languages');
     222                        }
     223                }
     224        }
     225}
     226
     227function wp_set_wpdb_vars() {
     228        global $wpdb, $table_prefix;
     229        if ( !empty($wpdb->error) )
     230                dead_db();
     231
     232        /**
     233         * Format specifiers for DB columns. Columns not listed here default to %s.
     234         * @since 2.8.0
     235         * @see wpdb:$field_types
     236         * @see wpdb:prepare()
     237         * @see wpdb:insert()
     238         * @see wpdb:update()
     239         */
     240        $wpdb->field_types = array( 'post_author' => '%d', 'post_parent' => '%d', 'menu_order' => '%d', 'term_id' => '%d', 'term_group' => '%d', 'term_taxonomy_id' => '%d',
     241                'parent' => '%d', 'count' => '%d','object_id' => '%d', 'term_order' => '%d', 'ID' => '%d', 'commment_ID' => '%d', 'comment_post_ID' => '%d', 'comment_parent' => '%d',
     242                'user_id' => '%d', 'link_id' => '%d', 'link_owner' => '%d', 'link_rating' => '%d', 'option_id' => '%d', 'blog_id' => '%d', 'meta_id' => '%d', 'post_id' => '%d',
     243                'user_status' => '%d', 'umeta_id' => '%d', 'comment_karma' => '%d', 'comment_count' => '%d');
     244
     245        $prefix = $wpdb->set_prefix($table_prefix);
     246
     247        if ( is_wp_error($prefix) )
     248                wp_die(/*WP_I18N_BAD_PREFIX*/'<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.'/*/WP_I18N_BAD_PREFIX*/);
     249
     250}
     251
     252function wp_start_object_cache() {
     253        global $_wp_using_ext_object_cache;
     254        if ( file_exists(WP_CONTENT_DIR . '/object-cache.php') ) {
     255                require_once (WP_CONTENT_DIR . '/object-cache.php');
     256                $_wp_using_ext_object_cache = true;
     257        } else {
     258                require_once (ABSPATH . WPINC . '/cache.php');
     259                $_wp_using_ext_object_cache = false;
     260        }
     261
     262        wp_cache_init();
     263        if ( function_exists('wp_cache_add_global_groups') ) {
     264                        if( is_multisite() ) {
     265                                        wp_cache_add_global_groups(array ('users', 'userlogins', 'usermeta', 'site-transient', 'site-options', 'site-lookup', 'blog-lookup', 'blog-details', 'rss'));
     266                        } else {
     267                                wp_cache_add_global_groups(array ('users', 'userlogins', 'usermeta', 'site-transient'));
     268                        }
     269                wp_cache_add_non_persistent_groups(array( 'comment', 'counts', 'plugins' ));
     270        }
     271}
     272
     273function wp_not_installed() {
     274        if( is_multisite() ) {
     275                        if ( !is_blog_installed() && !defined('WP_INSTALLING') ) {
     276                                        die( __( 'The blog you have requested is not installed properly. Please contact the system administrator.' ) ); // have to die here ~ Mark
     277                        }
     278        } elseif ( !is_blog_installed() && (strpos($_SERVER['PHP_SELF'], 'install.php') === false && !defined('WP_INSTALLING')) ) {
     279                if ( defined('WP_SITEURL') )
     280                        $link = WP_SITEURL . '/wp-admin/install.php';
     281                elseif (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false)
     282                        $link = preg_replace('|/wp-admin/?.*?$|', '/', $_SERVER['PHP_SELF']) . 'wp-admin/install.php';
     283                else
     284                        $link = preg_replace('|/[^/]+?$|', '/', $_SERVER['PHP_SELF']) . 'wp-admin/install.php';
     285                require_once(ABSPATH . WPINC . '/kses.php');
     286                require_once(ABSPATH . WPINC . '/pluggable.php');
     287                require_once(ABSPATH . WPINC . '/formatting.php');
     288                wp_redirect($link);
     289                die();
     290        }
     291}
     292
     293function wp_load_mu_plugins() {
     294        if ( is_dir( WPMU_PLUGIN_DIR ) ) {
     295                if ( $dh = opendir( WPMU_PLUGIN_DIR ) ) {
     296                        $mu_plugins = array ();
     297                        while ( ( $plugin = readdir( $dh ) ) !== false )
     298                                if ( substr( $plugin, -4 ) == '.php' )
     299                                        $mu_plugins[] = $plugin;
     300                        closedir( $dh );
     301                                        if( is_multisite() )
     302                                        sort( $mu_plugins );
     303                        foreach( $mu_plugins as $mu_plugin )
     304                                include_once( WPMU_PLUGIN_DIR . '/' . $mu_plugin );
     305                }
     306        }
     307}
     308
     309function wp_load_plugins() {
     310        // Check for hacks file if the option is enabled
     311        if ( get_option('hack_file') ) {
     312                if ( file_exists(ABSPATH . 'my-hacks.php') )
     313                        require(ABSPATH . 'my-hacks.php');
     314        }
     315
     316        $current_plugins = apply_filters( 'active_plugins', get_option( 'active_plugins' ) );
     317        if ( is_array($current_plugins) && !defined('WP_INSTALLING') ) {
     318                foreach ( $current_plugins as $plugin ) {
     319                        // check the $plugin filename
     320                        // Validate plugin filename
     321                        if ( validate_file($plugin) // $plugin must validate as file
     322                                || '.php' != substr($plugin, -4) // $plugin must end with '.php'
     323                                || !file_exists(WP_PLUGIN_DIR . '/' . $plugin)  // $plugin must exist
     324                                )
     325                                continue;
     326
     327                        include_once(WP_PLUGIN_DIR . '/' . $plugin);
     328                }
     329                unset($plugin);
     330        }
     331        unset($current_plugins);
     332
     333}
     334
     335function wp_set_internal_encoding() {
     336        /*
     337         * In most cases the default internal encoding is latin1, which is of no use,
     338         * since we want to use the mb_ functions for utf-8 strings
     339         */
     340        if (function_exists('mb_internal_encoding')) {
     341                if (!@mb_internal_encoding(get_option('blog_charset')))
     342                        mb_internal_encoding('UTF-8');
     343        }
     344}
     345
     346function wp_magic_quotes() {
     347        // If already slashed, strip.
     348        if ( get_magic_quotes_gpc() ) {
     349                $_GET    = stripslashes_deep($_GET   );
     350                $_POST   = stripslashes_deep($_POST  );
     351                $_COOKIE = stripslashes_deep($_COOKIE);
     352        }
     353
     354        // Escape with wpdb.
     355        $_GET    = add_magic_quotes($_GET   );
     356        $_POST   = add_magic_quotes($_POST  );
     357        $_COOKIE = add_magic_quotes($_COOKIE);
     358        $_SERVER = add_magic_quotes($_SERVER);
     359
     360        // Force REQUEST to be GET + POST.  If SERVER, COOKIE, or ENV are needed, use those superglobals directly.
     361        $_REQUEST = array_merge($_GET, $_POST);
     362}
     363
     364function wp_find_locale() {
     365        global $locale, $locale_file;
     366        /**
     367         * The locale of the blog
     368         * @since 1.5.0
     369         */
     370        $locale = get_locale();
     371        $locale_file = WP_LANG_DIR . "/$locale.php";
     372        if ( is_readable($locale_file) )
     373                require_once($locale_file);
     374
     375        // Pull in locale data after loading text domain.
     376        require_once(ABSPATH . WPINC . '/locale.php');
     377}
     378
     379function wp_load_theme_functions() {
     380        // Load functions for active theme.
     381        if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists(STYLESHEETPATH . '/functions.php') )
     382                include(STYLESHEETPATH . '/functions.php');
     383        if ( file_exists(TEMPLATEPATH . '/functions.php') )
     384                include(TEMPLATEPATH . '/functions.php');
     385
     386        // Load in support for template functions which the theme supports
     387        require_if_theme_supports( 'post-thumbnails', ABSPATH . WPINC . '/post-thumbnail-template.php' );
     388}
     389
     390/**
     391 * Runs just before PHP shuts down execution.
     392 *
     393 * @access private
     394 * @since 1.2.0
     395 */
     396function shutdown_action_hook() {
     397        do_action('shutdown');
     398        wp_cache_close();
     399}
     400
     401/**
     402 * Copy an object.
     403 *
     404 * Returns a cloned copy of an object.
     405 *
     406 * @since 2.7.0
     407 *
     408 * @param object $object The object to clone
     409 * @return object The cloned object
     410 */
     411function wp_clone( $object ) {
     412        static $can_clone;
     413        if ( !isset( $can_clone ) ) {
     414                $can_clone = version_compare( phpversion(), '5.0', '>=' );
     415        }
     416        return $can_clone ? clone( $object ) : $object;
     417}
     418
     419/**
     420 * Whether the current request is in WordPress admin Panel
     421 *
     422 * Does not inform on whether the user is an admin! Use capability checks to
     423 * tell if the user should be accessing a section or not.
     424 *
     425 * @since 1.5.1
     426 *
     427 * @return bool True if inside WordPress administration pages.
     428 */
     429function is_admin() {
     430        if ( defined('WP_ADMIN') )
     431                return WP_ADMIN;
     432        return false;
     433}
     434
     435/**
     436 * Whether Multisite support is enabled
     437 *
     438 * @since 3.0
     439 *
     440 * @return bool True if multisite is enabled, false otherwise.
     441 */
     442function is_multisite() {
     443        if ( ( defined('MULTISITE') && MULTISITE ) || defined('VHOST') || defined('SUNRISE') )
     444                return true;
     445
     446        return false;
     447}
     448
     449?>
     450 No newline at end of file
  • wp-settings.php

     
    33 * Used to setup and fix common variables and include
    44 * the WordPress procedural and class library.
    55 *
    6  * You should not have to change this file and allows
    7  * for some configuration in wp-config.php.
     6 * Allows for some configuration in wp-config.php (see default-constants.php)
    87 *
    98 * @package WordPress
    109 */
    1110
    12 
    1311/**
    14  * Whether Multisite support is enabled
     12 * Stores the location of the WordPress directory of functions, classes, and core content.
    1513 *
    16  * @since 3.0
    17  *
    18  * @return bool True if multisite is enabled, false otherwise.
     14 * @since 1.0.0
    1915 */
    20 function is_multisite() {
    21         if ( ( defined('MULTISITE') && MULTISITE ) || defined('VHOST') || defined('SUNRISE') )
    22                 return true;
     16define('WPINC', 'wp-includes');
    2317
    24         return false;
    25 }
     18require (ABSPATH . WPINC . '/load.php');
     19require (ABSPATH . WPINC . '/default-constants.php');
     20require (ABSPATH . WPINC . '/version.php');
    2621
    27 if ( !defined('WP_MEMORY_LIMIT') ) {
    28         if( is_multisite() ) {
    29                 define('WP_MEMORY_LIMIT', '64M');
    30         } else {
    31                 define('WP_MEMORY_LIMIT', '32M');
    32         }
    33 }
     22wp_default_constants('init');
    3423
    35 if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < abs(intval(WP_MEMORY_LIMIT)) ) )
    36         @ini_set('memory_limit', WP_MEMORY_LIMIT);
    37 
    3824set_magic_quotes_runtime(0);
    3925@ini_set('magic_quotes_sybase', 0);
    4026
    4127if ( function_exists('date_default_timezone_set') )
    4228        date_default_timezone_set('UTC');
    4329
    44 /**
    45  * Turn register globals off.
    46  *
    47  * @access private
    48  * @since 2.1.0
    49  * @return null Will return null if register_globals PHP directive was disabled
    50  */
    51 function wp_unregister_GLOBALS() {
    52         if ( !ini_get('register_globals') )
    53                 return;
    54 
    55         if ( isset($_REQUEST['GLOBALS']) )
    56                 die('GLOBALS overwrite attempt detected');
    57 
    58         // Variables that shouldn't be unset
    59         $noUnset = array('GLOBALS', '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES', 'table_prefix');
    60 
    61         $input = array_merge($_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_FILES, isset($_SESSION) && is_array($_SESSION) ? $_SESSION : array());
    62         foreach ( $input as $k => $v )
    63                 if ( !in_array($k, $noUnset) && isset($GLOBALS[$k]) ) {
    64                         $GLOBALS[$k] = NULL;
    65                         unset($GLOBALS[$k]);
    66                 }
    67 }
    68 
    6930wp_unregister_GLOBALS();
    7031
    7132unset( $wp_filter, $cache_lastcommentmodified, $cache_lastpostdate );
    7233
    73 /**
    74  * The $blog_id global, which you can change in the config allows you to create a simple
    75  * multiple blog installation using just one WordPress and changing $blog_id around.
    76  *
    77  * @global int $blog_id
    78  * @since 2.0.0
    79  */
    80 if ( ! isset($blog_id) )
    81         $blog_id = 1;
     34wp_fix_server_vars();
    8235
    83 // Fix for IIS when running with PHP ISAPI
    84 if ( empty( $_SERVER['REQUEST_URI'] ) || ( php_sapi_name() != 'cgi-fcgi' && preg_match( '/^Microsoft-IIS\//', $_SERVER['SERVER_SOFTWARE'] ) ) ) {
     36wp_check_php_mysql_versions();
    8537
    86         // IIS Mod-Rewrite
    87         if (isset($_SERVER['HTTP_X_ORIGINAL_URL'])) {
    88                 $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL'];
    89         }
    90         // IIS Isapi_Rewrite
    91         else if (isset($_SERVER['HTTP_X_REWRITE_URL'])) {
    92                 $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_REWRITE_URL'];
    93         }
    94         else
    95         {
    96                 // Use ORIG_PATH_INFO if there is no PATH_INFO
    97                 if ( !isset($_SERVER['PATH_INFO']) && isset($_SERVER['ORIG_PATH_INFO']) )
    98                         $_SERVER['PATH_INFO'] = $_SERVER['ORIG_PATH_INFO'];
     38wp_maintenance();
    9939
    100                 // Some IIS + PHP configurations puts the script-name in the path-info (No need to append it twice)
    101                 if ( isset($_SERVER['PATH_INFO']) ) {
    102                         if ( $_SERVER['PATH_INFO'] == $_SERVER['SCRIPT_NAME'] )
    103                                 $_SERVER['REQUEST_URI'] = $_SERVER['PATH_INFO'];
    104                         else
    105                                 $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . $_SERVER['PATH_INFO'];
    106                 }
    107 
    108                 // Append the query string if it exists and isn't null
    109                 if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) {
    110                         $_SERVER['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
    111                 }
    112         }
    113 }
    114 
    115 // Fix for PHP as CGI hosts that set SCRIPT_FILENAME to something ending in php.cgi for all requests
    116 if ( isset($_SERVER['SCRIPT_FILENAME']) && ( strpos($_SERVER['SCRIPT_FILENAME'], 'php.cgi') == strlen($_SERVER['SCRIPT_FILENAME']) - 7 ) )
    117         $_SERVER['SCRIPT_FILENAME'] = $_SERVER['PATH_TRANSLATED'];
    118 
    119 // Fix for Dreamhost and other PHP as CGI hosts
    120 if (strpos($_SERVER['SCRIPT_NAME'], 'php.cgi') !== false)
    121         unset($_SERVER['PATH_INFO']);
    122 
    123 // Fix empty PHP_SELF
    124 $PHP_SELF = $_SERVER['PHP_SELF'];
    125 if ( empty($PHP_SELF) )
    126         $_SERVER['PHP_SELF'] = $PHP_SELF = preg_replace("/(\?.*)?$/",'',$_SERVER["REQUEST_URI"]);
    127 
    128 if ( version_compare( '4.3', phpversion(), '>' ) ) {
    129         die( sprintf( /*WP_I18N_OLD_PHP*/'Your server is running PHP version %s but WordPress requires at least 4.3.'/*/WP_I18N_OLD_PHP*/, phpversion() ) );
    130 }
    131 
    132 if ( !defined('WP_CONTENT_DIR') )
    133         define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); // no trailing slash, full paths only - WP_CONTENT_URL is defined further down
    134 
    135 if ( file_exists(ABSPATH . '.maintenance') && !defined('WP_INSTALLING') ) {
    136         include(ABSPATH . '.maintenance');
    137         // If the $upgrading timestamp is older than 10 minutes, don't die.
    138         if ( ( time() - $upgrading ) < 600 ) {
    139                 if ( file_exists( WP_CONTENT_DIR . '/maintenance.php' ) ) {
    140                         require_once( WP_CONTENT_DIR . '/maintenance.php' );
    141                         die();
    142                 }
    143 
    144                 $protocol = $_SERVER["SERVER_PROTOCOL"];
    145                 if ( 'HTTP/1.1' != $protocol && 'HTTP/1.0' != $protocol )
    146                         $protocol = 'HTTP/1.0';
    147                 header( "$protocol 503 Service Unavailable", true, 503 );
    148                 header( 'Content-Type: text/html; charset=utf-8' );
    149                 header( 'Retry-After: 600' );
    150 ?>
    151 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    152 <html xmlns="http://www.w3.org/1999/xhtml">
    153 <head>
    154 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    155         <title>Maintenance</title>
    156 
    157 </head>
    158 <body>
    159         <h1>Briefly unavailable for scheduled maintenance. Check back in a minute.</h1>
    160 </body>
    161 </html>
    162 <?php
    163                 die();
    164         }
    165 }
    166 
    167 if ( !extension_loaded('mysql') && !file_exists(WP_CONTENT_DIR . '/db.php') )
    168         die( /*WP_I18N_OLD_MYSQL*/'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.'/*/WP_I18N_OLD_MYSQL*/ );
    169 
    170 /**
    171  * PHP 4 standard microtime start capture.
    172  *
    173  * @access private
    174  * @since 0.71
    175  * @global int $timestart Seconds and Microseconds added together from when function is called.
    176  * @return bool Always returns true.
    177  */
    178 function timer_start() {
    179         global $timestart;
    180         $mtime = explode(' ', microtime() );
    181         $mtime = $mtime[1] + $mtime[0];
    182         $timestart = $mtime;
    183         return true;
    184 }
    185 
    186 /**
    187  * Return and/or display the time from the page start to when function is called.
    188  *
    189  * You can get the results and print them by doing:
    190  * <code>
    191  * $nTimePageTookToExecute = timer_stop();
    192  * echo $nTimePageTookToExecute;
    193  * </code>
    194  *
    195  * Or instead, you can do:
    196  * <code>
    197  * timer_stop(1);
    198  * </code>
    199  * which will do what the above does. If you need the result, you can assign it to a variable, but
    200  * most cases, you only need to echo it.
    201  *
    202  * @since 0.71
    203  * @global int $timestart Seconds and Microseconds added together from when timer_start() is called
    204  * @global int $timeend  Seconds and Microseconds added together from when function is called
    205  *
    206  * @param int $display Use '0' or null to not echo anything and 1 to echo the total time
    207  * @param int $precision The amount of digits from the right of the decimal to display. Default is 3.
    208  * @return float The "second.microsecond" finished time calculation
    209  */
    210 function timer_stop($display = 0, $precision = 3) { //if called like timer_stop(1), will echo $timetotal
    211         global $timestart, $timeend;
    212         $mtime = microtime();
    213         $mtime = explode(' ',$mtime);
    214         $mtime = $mtime[1] + $mtime[0];
    215         $timeend = $mtime;
    216         $timetotal = $timeend-$timestart;
    217         $r = ( function_exists('number_format_i18n') ) ? number_format_i18n($timetotal, $precision) : number_format($timetotal, $precision);
    218         if ( $display )
    219                 echo $r;
    220         return $r;
    221 }
    22240timer_start();
    22341
    224 // Add define('WP_DEBUG', true); to wp-config.php to enable display of notices during development.
    225 if ( !defined('WP_DEBUG') )
    226         define( 'WP_DEBUG', false );
     42wp_debug_mode();
    22743
    228 if ( WP_DEBUG ) {
    229         if ( defined('E_DEPRECATED') )
    230                 error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT);
    231         else
    232                 error_reporting(E_ALL);
    233         // Add define('WP_DEBUG_DISPLAY', false); to wp-config.php to use the globally configured setting for display_errors and not force it to On
    234         if ( ! defined('WP_DEBUG_DISPLAY') || WP_DEBUG_DISPLAY )
    235                 ini_set('display_errors', 1);
    236         // Add define('WP_DEBUG_LOG', true); to enable php debug logging to WP_CONTENT_DIR/debug.log
    237         if ( defined('WP_DEBUG_LOG') && WP_DEBUG_LOG ) {
    238                 ini_set('log_errors', 1);
    239                 ini_set('error_log', WP_CONTENT_DIR . '/debug.log');
    240         }
    241 } else {
    242         if ( defined('E_RECOVERABLE_ERROR') )
    243                 error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR);
    244         else
    245                 error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);
    246 }
    247 
    24844// For an advanced caching plugin to use, static because you would only want one
    249 if ( defined('WP_CACHE') && WP_CACHE )
     45if ( WP_CACHE )
    25046        @include WP_CONTENT_DIR . '/advanced-cache.php';
    25147
    252 /**
    253  * Private
    254  */
    255 if ( !defined('MEDIA_TRASH') )
    256         define('MEDIA_TRASH', false);
     48wp_set_lang_dir();
    25749
    258 /**
    259  * Stores the location of the WordPress directory of functions, classes, and core content.
    260  *
    261  * @since 1.0.0
    262  */
    263 define('WPINC', 'wp-includes');
    264 
    265 if ( !defined('WP_LANG_DIR') ) {
    266         /**
    267          * Stores the location of the language directory. First looks for language folder in WP_CONTENT_DIR
    268          * and uses that folder if it exists. Or it uses the "languages" folder in WPINC.
    269          *
    270          * @since 2.1.0
    271          */
    272         if ( file_exists(WP_CONTENT_DIR . '/languages') && @is_dir(WP_CONTENT_DIR . '/languages') ) {
    273                 define('WP_LANG_DIR', WP_CONTENT_DIR . '/languages'); // no leading slash, no trailing slash, full path, not relative to ABSPATH
    274                 if (!defined('LANGDIR')) {
    275                         // Old static relative path maintained for limited backwards compatibility - won't work in some cases
    276                         define('LANGDIR', 'wp-content/languages');
    277                 }
    278         } else {
    279                 define('WP_LANG_DIR', ABSPATH . WPINC . '/languages'); // no leading slash, no trailing slash, full path, not relative to ABSPATH
    280                 if (!defined('LANGDIR')) {
    281                         // Old relative path maintained for backwards compatibility
    282                         define('LANGDIR', WPINC . '/languages');
    283                 }
    284         }
    285 }
    286 
    28750require (ABSPATH . WPINC . '/compat.php');
    28851require (ABSPATH . WPINC . '/functions.php');
    28952require (ABSPATH . WPINC . '/classes.php');
    29053
    29154require_wp_db();
    29255
    293 if ( !empty($wpdb->error) )
    294         dead_db();
     56wp_set_wpdb_vars();
    29557
    296 /**
    297  * Format specifiers for DB columns. Columns not listed here default to %s.
    298  * @since 2.8.0
    299  * @see wpdb:$field_types
    300  * @see wpdb:prepare()
    301  * @see wpdb:insert()
    302  * @see wpdb:update()
    303  */
    304 $wpdb->field_types = array( 'post_author' => '%d', 'post_parent' => '%d', 'menu_order' => '%d', 'term_id' => '%d', 'term_group' => '%d', 'term_taxonomy_id' => '%d',
    305         'parent' => '%d', 'count' => '%d','object_id' => '%d', 'term_order' => '%d', 'ID' => '%d', 'commment_ID' => '%d', 'comment_post_ID' => '%d', 'comment_parent' => '%d',
    306         'user_id' => '%d', 'link_id' => '%d', 'link_owner' => '%d', 'link_rating' => '%d', 'option_id' => '%d', 'blog_id' => '%d', 'meta_id' => '%d', 'post_id' => '%d',
    307         'user_status' => '%d', 'umeta_id' => '%d', 'comment_karma' => '%d', 'comment_count' => '%d');
     58wp_start_object_cache();
    30859
    309 $prefix = $wpdb->set_prefix($table_prefix);
    310 
    311 if ( is_wp_error($prefix) )
    312         wp_die(/*WP_I18N_BAD_PREFIX*/'<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.'/*/WP_I18N_BAD_PREFIX*/);
    313 
    314 /**
    315  * Copy an object.
    316  *
    317  * Returns a cloned copy of an object.
    318  *
    319  * @since 2.7.0
    320  *
    321  * @param object $object The object to clone
    322  * @return object The cloned object
    323  */
    324 function wp_clone( $object ) {
    325         static $can_clone;
    326         if ( !isset( $can_clone ) ) {
    327                 $can_clone = version_compare( phpversion(), '5.0', '>=' );
    328         }
    329         return $can_clone ? clone( $object ) : $object;
    330 }
    331 
    332 /**
    333  * Whether the current request is in WordPress admin Panel
    334  *
    335  * Does not inform on whether the user is an admin! Use capability checks to
    336  * tell if the user should be accessing a section or not.
    337  *
    338  * @since 1.5.1
    339  *
    340  * @return bool True if inside WordPress administration pages.
    341  */
    342 function is_admin() {
    343         if ( defined('WP_ADMIN') )
    344                 return WP_ADMIN;
    345         return false;
    346 }
    347 
    348 if ( file_exists(WP_CONTENT_DIR . '/object-cache.php') ) {
    349         require_once (WP_CONTENT_DIR . '/object-cache.php');
    350         $_wp_using_ext_object_cache = true;
    351 } else {
    352         require_once (ABSPATH . WPINC . '/cache.php');
    353         $_wp_using_ext_object_cache = false;
    354 }
    355 
    356 wp_cache_init();
    357 if ( function_exists('wp_cache_add_global_groups') ) {
    358         if( is_multisite() ) {
    359                 wp_cache_add_global_groups(array ('users', 'userlogins', 'usermeta', 'site-transient', 'site-options', 'site-lookup', 'blog-lookup', 'blog-details', 'rss'));
    360         } else {
    361                 wp_cache_add_global_groups(array ('users', 'userlogins', 'usermeta', 'site-transient'));
    362         }
    363         wp_cache_add_non_persistent_groups(array( 'comment', 'counts', 'plugins' ));
    364 }
    365 
    366 if( is_multisite() ) {
     60if( is_multisite() )
    36761    require (ABSPATH . WPINC . '/ms-load.php');
    368 }
    36962
    37063require (ABSPATH . WPINC . '/plugin.php');
    37164require (ABSPATH . WPINC . '/default-filters.php');
    37265include_once(ABSPATH . WPINC . '/pomo/mo.php');
    37366
    374 if( is_multisite() && defined( "SHORTINIT" ) && SHORTINIT ) // stop most of WP being loaded, we just want the basics
     67if( is_multisite() && SHORTINIT ) // stop most of WP being loaded, we just want the basics
    37568        return false;
    37669
    37770require_once (ABSPATH . WPINC . '/l10n.php');
    37871
    379 if( is_multisite() ) {
    380         if ( !is_blog_installed() && !defined('WP_INSTALLING') ) {
    381                 die( __( 'The blog you have requested is not installed properly. Please contact the system administrator.' ) ); // have to die here ~ Mark
    382         }
    383 } elseif ( !is_blog_installed() && (strpos($_SERVER['PHP_SELF'], 'install.php') === false && !defined('WP_INSTALLING')) ) {
    384         if ( defined('WP_SITEURL') )
    385                 $link = WP_SITEURL . '/wp-admin/install.php';
    386         elseif (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false)
    387                 $link = preg_replace('|/wp-admin/?.*?$|', '/', $_SERVER['PHP_SELF']) . 'wp-admin/install.php';
    388         else
    389                 $link = preg_replace('|/[^/]+?$|', '/', $_SERVER['PHP_SELF']) . 'wp-admin/install.php';
    390         require_once(ABSPATH . WPINC . '/kses.php');
    391         require_once(ABSPATH . WPINC . '/pluggable.php');
    392         require_once(ABSPATH . WPINC . '/formatting.php');
    393         wp_redirect($link);
    394         die(); // have to die here ~ Mark
    395 }
     72wp_not_installed();
    39673
    39774require (ABSPATH . WPINC . '/formatting.php');
    39875require (ABSPATH . WPINC . '/capabilities.php');
     
    41592require (ABSPATH . WPINC . '/bookmark-template.php');
    41693require (ABSPATH . WPINC . '/kses.php');
    41794require (ABSPATH . WPINC . '/cron.php');
    418 require (ABSPATH . WPINC . '/version.php');
    41995require (ABSPATH . WPINC . '/deprecated.php');
    42096require (ABSPATH . WPINC . '/script-loader.php');
    42197require (ABSPATH . WPINC . '/taxonomy.php');
     
    432108        require_once( ABSPATH . WPINC . '/ms-deprecated.php' );
    433109}
    434110
    435 if ( !defined('WP_CONTENT_URL') )
    436         define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up
     111wp_default_constants('wp_included');
    437112
    438 /**
    439  * Allows for the plugins directory to be moved from the default location.
    440  *
    441  * @since 2.6.0
    442  */
    443 if ( !defined('WP_PLUGIN_DIR') )
    444         define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins' ); // full path, no trailing slash
    445 
    446 /**
    447  * Allows for the plugins directory to be moved from the default location.
    448  *
    449  * @since 2.6.0
    450  */
    451 if ( !defined('WP_PLUGIN_URL') )
    452         define( 'WP_PLUGIN_URL', WP_CONTENT_URL . '/plugins' ); // full url, no trailing slash
    453 
    454 /**
    455  * Allows for the plugins directory to be moved from the default location.
    456  *
    457  * @since 2.1.0
    458  */
    459 if ( !defined('PLUGINDIR') )
    460         define( 'PLUGINDIR', 'wp-content/plugins' ); // Relative to ABSPATH.  For back compat.
    461 
    462113if( is_multisite() )
    463114        ms_network_settings();
    464 /**
    465  * Allows for the mu-plugins directory to be moved from the default location.
    466  *
    467  * @since 2.8.0
    468  */
    469 if ( !defined('WPMU_PLUGIN_DIR') )
    470         define( 'WPMU_PLUGIN_DIR', WP_CONTENT_DIR . '/mu-plugins' ); // full path, no trailing slash
    471115
    472 /**
    473  * Allows for the mu-plugins directory to be moved from the default location.
    474  *
    475  * @since 2.8.0
    476  */
    477 if ( !defined('WPMU_PLUGIN_URL') )
    478         define( 'WPMU_PLUGIN_URL', WP_CONTENT_URL . '/mu-plugins' ); // full url, no trailing slash
     116wp_default_constants('ms_network_settings_loaded');
    479117
    480 /**
    481  * Allows for the mu-plugins directory to be moved from the default location.
    482  *
    483  * @since 2.8.0
    484  */
    485 if ( !defined( 'MUPLUGINDIR' ) )
    486         define( 'MUPLUGINDIR', 'wp-content/mu-plugins' ); // Relative to ABSPATH.  For back compat.
     118wp_load_mu_plugins();
    487119
    488 if ( is_dir( WPMU_PLUGIN_DIR ) ) {
    489         if ( $dh = opendir( WPMU_PLUGIN_DIR ) ) {
    490                 $mu_plugins = array ();
    491                 while ( ( $plugin = readdir( $dh ) ) !== false ) {
    492                         if ( substr( $plugin, -4 ) == '.php' ) {
    493                                 $mu_plugins[] = $plugin;
    494                         }
    495                 }
    496                
    497                 closedir( $dh );
    498 
    499                 if( is_multisite() )
    500                         sort( $mu_plugins );
    501                
    502                 foreach( $mu_plugins as $mu_plugin ) {
    503                         include_once( WPMU_PLUGIN_DIR . '/' . $mu_plugin );
    504                 }
    505         }
    506 }
    507120/**
    508121 * Used to load network wide plugins
    509122 * @since 3.0
    510123 */
    511 if( is_multisite() ) {
     124if( is_multisite() )
    512125        ms_network_plugins();
    513 }
    514126
    515127do_action('muplugins_loaded');
    516128
     
    522134        ms_site_check();
    523135        ms_network_cookies();
    524136}
    525 /**
    526  * Used to guarantee unique hash cookies
    527  * @since 1.5
    528  */
    529 if( !defined('COOKIEHASH') )
    530         define('COOKIEHASH', md5(get_option('siteurl')));
    531137
    532 /**
    533  * Should be exactly the same as the default value of SECRET_KEY in wp-config-sample.php
    534  * @since 2.5.0
    535  */
    536 $wp_default_secret_key = 'put your unique phrase here';
     138wp_default_constants('ms_loaded');
    537139
    538 /**
    539  * It is possible to define this in wp-config.php
    540  * @since 2.0.0
    541  */
    542 if ( !defined('USER_COOKIE') )
    543         define('USER_COOKIE', 'wordpressuser_' . COOKIEHASH);
    544 
    545 /**
    546  * It is possible to define this in wp-config.php
    547  * @since 2.0.0
    548  */
    549 if ( !defined('PASS_COOKIE') )
    550         define('PASS_COOKIE', 'wordpresspass_' . COOKIEHASH);
    551 
    552 /**
    553  * It is possible to define this in wp-config.php
    554  * @since 2.5.0
    555  */
    556 if ( !defined('AUTH_COOKIE') )
    557         define('AUTH_COOKIE', 'wordpress_' . COOKIEHASH);
    558 
    559 /**
    560  * It is possible to define this in wp-config.php
    561  * @since 2.6.0
    562  */
    563 if ( !defined('SECURE_AUTH_COOKIE') )
    564         define('SECURE_AUTH_COOKIE', 'wordpress_sec_' . COOKIEHASH);
    565 
    566 /**
    567  * It is possible to define this in wp-config.php
    568  * @since 2.6.0
    569  */
    570 if ( !defined('LOGGED_IN_COOKIE') )
    571         define('LOGGED_IN_COOKIE', 'wordpress_logged_in_' . COOKIEHASH);
    572 
    573 /**
    574  * It is possible to define this in wp-config.php
    575  * @since 2.3.0
    576  */
    577 if ( !defined('TEST_COOKIE') )
    578         define('TEST_COOKIE', 'wordpress_test_cookie');
    579 
    580 /**
    581  * It is possible to define this in wp-config.php
    582  * @since 1.2.0
    583  */
    584 if ( !defined('COOKIEPATH') )
    585         define('COOKIEPATH', preg_replace('|https?://[^/]+|i', '', get_option('home') . '/' ) );
    586 
    587 /**
    588  * It is possible to define this in wp-config.php
    589  * @since 1.5.0
    590  */
    591 if ( !defined('SITECOOKIEPATH') )
    592         define('SITECOOKIEPATH', preg_replace('|https?://[^/]+|i', '', get_option('siteurl') . '/' ) );
    593 
    594 /**
    595  * It is possible to define this in wp-config.php
    596  * @since 2.6.0
    597  */
    598 if ( !defined('ADMIN_COOKIE_PATH') )
    599         define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH . 'wp-admin' );
    600 
    601 /**
    602  * It is possible to define this in wp-config.php
    603  * @since 2.6.0
    604  */
    605 if ( !defined('PLUGINS_COOKIE_PATH') )
    606         define( 'PLUGINS_COOKIE_PATH', preg_replace('|https?://[^/]+|i', '', WP_PLUGIN_URL)  );
    607 
    608 /**
    609  * It is possible to define this in wp-config.php
    610  * @since 2.0.0
    611  */
    612 if ( !defined('COOKIE_DOMAIN') )
    613         define('COOKIE_DOMAIN', false);
    614 
    615 /**
    616  * It is possible to define this in wp-config.php
    617  * @since 2.6.0
    618  */
    619 if ( !defined('FORCE_SSL_ADMIN') )
    620         define('FORCE_SSL_ADMIN', false);
    621 force_ssl_admin(FORCE_SSL_ADMIN);
    622 
    623 /**
    624  * It is possible to define this in wp-config.php
    625  * @since 2.6.0
    626  */
    627 if ( !defined('FORCE_SSL_LOGIN') )
    628         define('FORCE_SSL_LOGIN', false);
    629 force_ssl_login(FORCE_SSL_LOGIN);
    630 
    631 /**
    632  * It is possible to define this in wp-config.php
    633  * @since 2.5.0
    634  */
    635 if ( !defined( 'AUTOSAVE_INTERVAL' ) )
    636         define( 'AUTOSAVE_INTERVAL', 60 );
    637 
    638 /**
    639  * It is possible to define this in wp-config.php
    640  * @since 2.9.0
    641  */
    642 if ( !defined( 'EMPTY_TRASH_DAYS' ) )
    643         define( 'EMPTY_TRASH_DAYS', 30 );
    644 
    645140require (ABSPATH . WPINC . '/vars.php');
    646141
    647142// make taxonomies available to plugins and themes
    648143// @plugin authors: warning: this gets registered again on the init hook
    649144create_initial_taxonomies();
    650145
    651 // Check for hacks file if the option is enabled
    652 if ( get_option('hack_file') ) {
    653         if ( file_exists(ABSPATH . 'my-hacks.php') )
    654                 require(ABSPATH . 'my-hacks.php');
    655 }
     146wp_load_plugins();
    656147
    657 $current_plugins = apply_filters( 'active_plugins', get_option( 'active_plugins' ) );
    658 if ( is_array($current_plugins) && !defined('WP_INSTALLING') ) {
    659         foreach ( $current_plugins as $plugin ) {
    660                 // check the $plugin filename
    661                 // Validate plugin filename
    662                 if ( validate_file($plugin) // $plugin must validate as file
    663                         || '.php' != substr($plugin, -4) // $plugin must end with '.php'
    664                         || !file_exists(WP_PLUGIN_DIR . '/' . $plugin)  // $plugin must exist
    665                         )
    666                         continue;
    667 
    668                 include_once(WP_PLUGIN_DIR . '/' . $plugin);
    669         }
    670         unset($plugin);
    671 }
    672 unset($current_plugins);
    673 
    674148require (ABSPATH . WPINC . '/pluggable.php');
    675149
    676 /*
    677  * In most cases the default internal encoding is latin1, which is of no use,
    678  * since we want to use the mb_ functions for utf-8 strings
    679  */
    680 if (function_exists('mb_internal_encoding')) {
    681         if (!@mb_internal_encoding(get_option('blog_charset')))
    682                 mb_internal_encoding('UTF-8');
    683 }
     150wp_set_internal_encoding();
    684151
    685 
    686 if ( defined('WP_CACHE') && function_exists('wp_cache_postload') )
     152if ( WP_CACHE && function_exists('wp_cache_postload') )
    687153        wp_cache_postload();
    688154
    689155do_action('plugins_loaded');
    690156
    691 $default_constants = array( 'WP_POST_REVISIONS' => true );
    692 foreach ( $default_constants as $c => $v )
    693         @define( $c, $v ); // will fail if the constant is already defined
    694 unset($default_constants, $c, $v);
     157wp_default_constants('plugins_loaded');
    695158
    696 // If already slashed, strip.
    697 if ( get_magic_quotes_gpc() ) {
    698         $_GET    = stripslashes_deep($_GET   );
    699         $_POST   = stripslashes_deep($_POST  );
    700         $_COOKIE = stripslashes_deep($_COOKIE);
    701 }
     159wp_magic_quotes();
    702160
    703 // Escape with wpdb.
    704 $_GET    = add_magic_quotes($_GET   );
    705 $_POST   = add_magic_quotes($_POST  );
    706 $_COOKIE = add_magic_quotes($_COOKIE);
    707 $_SERVER = add_magic_quotes($_SERVER);
    708 
    709 // Force REQUEST to be GET + POST.  If SERVER, COOKIE, or ENV are needed, use those superglobals directly.
    710 $_REQUEST = array_merge($_GET, $_POST);
    711 
    712161do_action('sanitize_comment_cookies');
    713162
    714163/**
     
    749198
    750199do_action('setup_theme');
    751200
    752 /**
    753  * Web Path to the current active template directory
    754  * @since 1.5.0
    755  */
    756 define('TEMPLATEPATH', get_template_directory());
     201wp_default_constants('setup_theme');
    757202
    758 /**
    759  * Web Path to the current active template stylesheet directory
    760  * @since 2.1.0
    761  */
    762 define('STYLESHEETPATH', get_stylesheet_directory());
    763 
    764203// Load the default text localization domain.
    765204load_default_textdomain();
    766205
    767 /**
    768  * The locale of the blog
    769  * @since 1.5.0
    770  */
    771 $locale = get_locale();
    772 $locale_file = WP_LANG_DIR . "/$locale.php";
    773 if ( is_readable($locale_file) )
    774         require_once($locale_file);
     206wp_find_locale();
    775207
    776 // Pull in locale data after loading text domain.
    777 require_once(ABSPATH . WPINC . '/locale.php');
    778 
    779208/**
    780209 * WordPress Locale object for loading locale domain date and various strings.
    781210 * @global object $wp_locale
     
    783212 */
    784213$wp_locale =& new WP_Locale();
    785214
    786 // Load functions for active theme.
    787 if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists(STYLESHEETPATH . '/functions.php') )
    788         include(STYLESHEETPATH . '/functions.php');
    789 if ( file_exists(TEMPLATEPATH . '/functions.php') )
    790         include(TEMPLATEPATH . '/functions.php');
     215wp_load_theme_functions();
    791216
    792 // Load in support for template functions which the theme supports
    793 require_if_theme_supports( 'post-thumbnails', ABSPATH . WPINC . '/post-thumbnail-template.php' );
    794 
    795 /**
    796  * Runs just before PHP shuts down execution.
    797  *
    798  * @access private
    799  * @since 1.2.0
    800  */
    801 function shutdown_action_hook() {
    802         do_action('shutdown');
    803         wp_cache_close();
    804 }
    805217register_shutdown_function('shutdown_action_hook');
    806218
    807219$wp->init();  // Sets up current user.
     
    809221// Everything is loaded and initialized.
    810222do_action('init');
    811223
    812 ?>
     224?>
     225 No newline at end of file