thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 1 | <?php |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 2 | /** |
| 3 | * Used to setup and fix common variables and include |
| 4 | * the WordPress procedural and class library. |
| 5 | * |
| 6 | * You should not have to change this file and allows |
| 7 | * for some configuration in wp-config.php. |
| 8 | * |
| 9 | * @package WordPress |
| 10 | */ |
| 11 | |
| 12 | if ( !defined('WP_MEMORY_LIMIT') ) |
| 13 | define('WP_MEMORY_LIMIT', '32M'); |
| 14 | |
| 15 | if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < abs(intval(WP_MEMORY_LIMIT)) ) ) |
| 16 | @ini_set('memory_limit', WP_MEMORY_LIMIT); |
| 17 | |
| 18 | |
| 19 | /** |
| 20 | * wp_unregister_GLOBALS() - Turn register globals off |
| 21 | * |
| 22 | * @access private |
| 23 | * @since 2.1.0 |
| 24 | * @return null Will return null if register_globals PHP directive was disabled |
| 25 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 26 | function wp_unregister_GLOBALS() { |
| 27 | if ( !ini_get('register_globals') ) |
| 28 | return; |
| 29 | |
| 30 | if ( isset($_REQUEST['GLOBALS']) ) |
| 31 | die('GLOBALS overwrite attempt detected'); |
| 32 | |
| 33 | // Variables that shouldn't be unset |
| 34 | $noUnset = array('GLOBALS', '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES', 'table_prefix'); |
| 35 | |
| 36 | $input = array_merge($_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_FILES, isset($_SESSION) && is_array($_SESSION) ? $_SESSION : array()); |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 37 | foreach ( $input as $k => $v ) |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 38 | if ( !in_array($k, $noUnset) && isset($GLOBALS[$k]) ) { |
| 39 | $GLOBALS[$k] = NULL; |
| 40 | unset($GLOBALS[$k]); |
| 41 | } |
| 42 | } |
| 43 | |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 44 | wp_unregister_GLOBALS(); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 45 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 46 | unset( $wp_filter, $cache_lastcommentmodified, $cache_lastpostdate ); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 47 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 48 | /** |
| 49 | * The $blog_id global, which you can change in the config allows you to create a simple |
| 50 | * multiple blog installation using just one WordPress and changing $blog_id around. |
| 51 | * |
| 52 | * @global int $blog_id |
| 53 | * @since 2.0.0 |
| 54 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 55 | if ( ! isset($blog_id) ) |
| 56 | $blog_id = 1; |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 57 | |
| 58 | // Fix for IIS, which doesn't set REQUEST_URI |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 59 | if ( empty( $_SERVER['REQUEST_URI'] ) ) { |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 60 | |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 61 | // IIS Mod-Rewrite |
| 62 | if (isset($_SERVER['HTTP_X_ORIGINAL_URL'])) { |
| 63 | $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL']; |
| 64 | } |
| 65 | // IIS Isapi_Rewrite |
| 66 | else if (isset($_SERVER['HTTP_X_REWRITE_URL'])) { |
| 67 | $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_REWRITE_URL']; |
| 68 | } |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 69 | else |
| 70 | { |
mrowe@apple.com | 9c406f5 | 2008-08-18 14:54:28 +0000 | [diff] [blame] | 71 | // Use ORIG_PATH_INFO if there is no PATH_INFO |
| 72 | if ( !isset($_SERVER['PATH_INFO']) && isset($_SERVER['ORIG_PATH_INFO']) ) |
| 73 | $_SERVER['PATH_INFO'] = $_SERVER['ORIG_PATH_INFO']; |
| 74 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 75 | // Some IIS + PHP configurations puts the script-name in the path-info (No need to append it twice) |
mrowe@apple.com | 83b826c | 2008-04-25 22:44:00 +0000 | [diff] [blame] | 76 | if ( isset($_SERVER['PATH_INFO']) ) { |
| 77 | if ( $_SERVER['PATH_INFO'] == $_SERVER['SCRIPT_NAME'] ) |
| 78 | $_SERVER['REQUEST_URI'] = $_SERVER['PATH_INFO']; |
| 79 | else |
| 80 | $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . $_SERVER['PATH_INFO']; |
| 81 | } |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 82 | |
| 83 | // Append the query string if it exists and isn't null |
| 84 | if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) { |
| 85 | $_SERVER['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING']; |
| 86 | } |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 87 | } |
| 88 | } |
| 89 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 90 | // Fix for PHP as CGI hosts that set SCRIPT_FILENAME to something ending in php.cgi for all requests |
| 91 | if ( isset($_SERVER['SCRIPT_FILENAME']) && ( strpos($_SERVER['SCRIPT_FILENAME'], 'php.cgi') == strlen($_SERVER['SCRIPT_FILENAME']) - 7 ) ) |
| 92 | $_SERVER['SCRIPT_FILENAME'] = $_SERVER['PATH_TRANSLATED']; |
| 93 | |
| 94 | // Fix for Dreamhost and other PHP as CGI hosts |
| 95 | if (strpos($_SERVER['SCRIPT_NAME'], 'php.cgi') !== false) |
| 96 | unset($_SERVER['PATH_INFO']); |
| 97 | |
| 98 | // Fix empty PHP_SELF |
| 99 | $PHP_SELF = $_SERVER['PHP_SELF']; |
| 100 | if ( empty($PHP_SELF) ) |
| 101 | $_SERVER['PHP_SELF'] = $PHP_SELF = preg_replace("/(\?.*)?$/",'',$_SERVER["REQUEST_URI"]); |
| 102 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 103 | if ( version_compare( '4.3', phpversion(), '>' ) ) { |
mrowe@apple.com | 74efd99 | 2008-10-05 02:21:53 +0000 | [diff] [blame^] | 104 | 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() ) ); |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 105 | } |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 106 | |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 107 | if ( !defined('WP_CONTENT_DIR') ) |
| 108 | define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); // no trailing slash, full paths only - WP_CONTENT_URL is defined further down |
| 109 | |
| 110 | if ( !extension_loaded('mysql') && !file_exists(WP_CONTENT_DIR . '/db.php') ) |
| 111 | die( /*WP_I18N_OLD_MYSQL*/'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.'/*/WP_I18N_OLD_MYSQL*/ ); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 112 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 113 | /** |
| 114 | * timer_start() - PHP 4 standard microtime start capture |
| 115 | * |
| 116 | * @access private |
| 117 | * @since 0.71 |
| 118 | * @global int $timestart Seconds and Microseconds added together from when function is called |
| 119 | * @return bool Always returns true |
| 120 | */ |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 121 | function timer_start() { |
| 122 | global $timestart; |
| 123 | $mtime = explode(' ', microtime() ); |
| 124 | $mtime = $mtime[1] + $mtime[0]; |
| 125 | $timestart = $mtime; |
| 126 | return true; |
| 127 | } |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 128 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 129 | /** |
| 130 | * timer_stop() - Return and/or display the time from the page start to when function is called. |
| 131 | * |
| 132 | * You can get the results and print them by doing: |
| 133 | * <code> |
| 134 | * $nTimePageTookToExecute = timer_stop(); |
| 135 | * echo $nTimePageTookToExecute; |
| 136 | * </code> |
| 137 | * |
| 138 | * Or instead, you can do: |
| 139 | * <code> |
| 140 | * timer_stop(1); |
| 141 | * </code> |
| 142 | * which will do what the above does. If you need the result, you can assign it to a variable, but |
| 143 | * most cases, you only need to echo it. |
| 144 | * |
| 145 | * @since 0.71 |
| 146 | * @global int $timestart Seconds and Microseconds added together from when timer_start() is called |
| 147 | * @global int $timeend Seconds and Microseconds added together from when function is called |
| 148 | * |
| 149 | * @param int $display Use '0' or null to not echo anything and 1 to echo the total time |
| 150 | * @param int $precision The amount of digits from the right of the decimal to display. Default is 3. |
| 151 | * @return float The "second.microsecond" finished time calculation |
| 152 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 153 | function timer_stop($display = 0, $precision = 3) { //if called like timer_stop(1), will echo $timetotal |
| 154 | global $timestart, $timeend; |
| 155 | $mtime = microtime(); |
| 156 | $mtime = explode(' ',$mtime); |
| 157 | $mtime = $mtime[1] + $mtime[0]; |
| 158 | $timeend = $mtime; |
| 159 | $timetotal = $timeend-$timestart; |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 160 | $r = ( function_exists('number_format_i18n') ) ? number_format_i18n($timetotal, $precision) : number_format($timetotal, $precision); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 161 | if ( $display ) |
| 162 | echo $r; |
| 163 | return $r; |
| 164 | } |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 165 | timer_start(); |
| 166 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 167 | // Add define('WP_DEBUG',true); to wp-config.php to enable display of notices during development. |
| 168 | if (defined('WP_DEBUG') and WP_DEBUG == true) { |
| 169 | error_reporting(E_ALL); |
| 170 | } else { |
| 171 | error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE); |
| 172 | } |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 173 | |
| 174 | // For an advanced caching plugin to use, static because you would only want one |
| 175 | if ( defined('WP_CACHE') ) |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 176 | @include WP_CONTENT_DIR . '/advanced-cache.php'; |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 177 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 178 | /** |
| 179 | * Stores the location of the WordPress directory of functions, classes, and core content. |
| 180 | * |
| 181 | * @since 1.0.0 |
| 182 | */ |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 183 | define('WPINC', 'wp-includes'); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 184 | |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 185 | if ( !defined('WP_LANG_DIR') ) { |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 186 | /** |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 187 | * Stores the location of the language directory. First looks for language folder in WP_CONTENT_DIR |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 188 | * and uses that folder if it exists. Or it uses the "languages" folder in WPINC. |
| 189 | * |
| 190 | * @since 2.1.0 |
| 191 | */ |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 192 | if ( file_exists(WP_CONTENT_DIR . '/languages') && @is_dir(WP_CONTENT_DIR . '/languages') ) { |
| 193 | define('WP_LANG_DIR', WP_CONTENT_DIR . '/languages'); // no leading slash, no trailing slash, full path, not relative to ABSPATH |
| 194 | if (!defined('LANGDIR')) { |
| 195 | // Old static relative path maintained for limited backwards compatibility - won't work in some cases |
| 196 | define('LANGDIR', 'wp-content/languages'); |
| 197 | } |
| 198 | } else { |
| 199 | define('WP_LANG_DIR', ABSPATH . WPINC . '/languages'); // no leading slash, no trailing slash, full path, not relative to ABSPATH |
| 200 | if (!defined('LANGDIR')) { |
| 201 | // Old relative path maintained for backwards compatibility |
| 202 | define('LANGDIR', WPINC . '/languages'); |
| 203 | } |
| 204 | } |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 205 | } |
| 206 | |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 207 | require (ABSPATH . WPINC . '/compat.php'); |
| 208 | require (ABSPATH . WPINC . '/functions.php'); |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 209 | require (ABSPATH . WPINC . '/classes.php'); |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 210 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 211 | require_wp_db(); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 212 | |
mrowe@apple.com | bea3bc8 | 2007-12-30 16:21:36 +0000 | [diff] [blame] | 213 | if ( !empty($wpdb->error) ) |
| 214 | dead_db(); |
| 215 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 216 | $prefix = $wpdb->set_prefix($table_prefix); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 217 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 218 | if ( is_wp_error($prefix) ) |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 219 | 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*/); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 220 | |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 221 | if ( file_exists(WP_CONTENT_DIR . '/object-cache.php') ) |
| 222 | require_once (WP_CONTENT_DIR . '/object-cache.php'); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 223 | else |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 224 | require_once (ABSPATH . WPINC . '/cache.php'); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 225 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 226 | wp_cache_init(); |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 227 | if ( function_exists('wp_cache_add_global_groups') ) { |
| 228 | wp_cache_add_global_groups(array ('users', 'userlogins', 'usermeta')); |
| 229 | wp_cache_add_non_persistent_groups(array( 'comment', 'counts', 'plugins' )); |
| 230 | } |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 231 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 232 | require (ABSPATH . WPINC . '/plugin.php'); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 233 | require (ABSPATH . WPINC . '/default-filters.php'); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 234 | include_once(ABSPATH . WPINC . '/streams.php'); |
| 235 | include_once(ABSPATH . WPINC . '/gettext.php'); |
| 236 | require_once (ABSPATH . WPINC . '/l10n.php'); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 237 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 238 | if ( !is_blog_installed() && (strpos($_SERVER['PHP_SELF'], 'install.php') === false && !defined('WP_INSTALLING')) ) { |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 239 | if ( defined('WP_SITEURL') ) |
| 240 | $link = WP_SITEURL . '/wp-admin/install.php'; |
| 241 | elseif (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false) |
| 242 | $link = preg_replace('|/wp-admin/?.*?$|', '/', $_SERVER['PHP_SELF']) . 'wp-admin/install.php'; |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 243 | else |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 244 | $link = preg_replace('|/[^/]+?$|', '/', $_SERVER['PHP_SELF']) . 'wp-admin/install.php'; |
| 245 | require_once(ABSPATH . WPINC . '/kses.php'); |
| 246 | require_once(ABSPATH . WPINC . '/pluggable.php'); |
| 247 | wp_redirect($link); |
| 248 | die(); // have to die here ~ Mark |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 249 | } |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 250 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 251 | require (ABSPATH . WPINC . '/formatting.php'); |
| 252 | require (ABSPATH . WPINC . '/capabilities.php'); |
| 253 | require (ABSPATH . WPINC . '/query.php'); |
| 254 | require (ABSPATH . WPINC . '/theme.php'); |
| 255 | require (ABSPATH . WPINC . '/user.php'); |
| 256 | require (ABSPATH . WPINC . '/general-template.php'); |
| 257 | require (ABSPATH . WPINC . '/link-template.php'); |
| 258 | require (ABSPATH . WPINC . '/author-template.php'); |
| 259 | require (ABSPATH . WPINC . '/post.php'); |
| 260 | require (ABSPATH . WPINC . '/post-template.php'); |
| 261 | require (ABSPATH . WPINC . '/category.php'); |
| 262 | require (ABSPATH . WPINC . '/category-template.php'); |
| 263 | require (ABSPATH . WPINC . '/comment.php'); |
| 264 | require (ABSPATH . WPINC . '/comment-template.php'); |
| 265 | require (ABSPATH . WPINC . '/rewrite.php'); |
| 266 | require (ABSPATH . WPINC . '/feed.php'); |
| 267 | require (ABSPATH . WPINC . '/bookmark.php'); |
| 268 | require (ABSPATH . WPINC . '/bookmark-template.php'); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 269 | require (ABSPATH . WPINC . '/kses.php'); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 270 | require (ABSPATH . WPINC . '/cron.php'); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 271 | require (ABSPATH . WPINC . '/version.php'); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 272 | require (ABSPATH . WPINC . '/deprecated.php'); |
| 273 | require (ABSPATH . WPINC . '/script-loader.php'); |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 274 | require (ABSPATH . WPINC . '/taxonomy.php'); |
| 275 | require (ABSPATH . WPINC . '/update.php'); |
| 276 | require (ABSPATH . WPINC . '/canonical.php'); |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 277 | require (ABSPATH . WPINC . '/shortcodes.php'); |
| 278 | require (ABSPATH . WPINC . '/media.php'); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 279 | |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 280 | if ( !defined('WP_CONTENT_URL') ) |
| 281 | define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up |
| 282 | |
| 283 | /** |
| 284 | * Allows for the plugins directory to be moved from the default location. |
| 285 | * |
| 286 | * @since 2.6 |
| 287 | */ |
| 288 | if ( !defined('WP_PLUGIN_DIR') ) |
| 289 | define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins' ); // full path, no trailing slash |
| 290 | if ( !defined('WP_PLUGIN_URL') ) |
| 291 | define( 'WP_PLUGIN_URL', WP_CONTENT_URL . '/plugins' ); // full url, no trailing slash |
| 292 | if ( !defined('PLUGINDIR') ) |
| 293 | define( 'PLUGINDIR', 'wp-content/plugins' ); // Relative to ABSPATH. For back compat. |
| 294 | |
| 295 | if ( ! defined('WP_INSTALLING') ) { |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 296 | // Used to guarantee unique hash cookies |
| 297 | $cookiehash = md5(get_option('siteurl')); |
| 298 | /** |
| 299 | * Used to guarantee unique hash cookies |
| 300 | * @since 1.5 |
| 301 | */ |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 302 | define('COOKIEHASH', $cookiehash); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 303 | } |
| 304 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 305 | /** |
| 306 | * Should be exactly the same as the default value of SECRET_KEY in wp-config-sample.php |
| 307 | * @since 2.5 |
| 308 | */ |
| 309 | $wp_default_secret_key = 'put your unique phrase here'; |
| 310 | |
| 311 | /** |
| 312 | * It is possible to define this in wp-config.php |
| 313 | * @since 2.0.0 |
| 314 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 315 | if ( !defined('USER_COOKIE') ) |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 316 | define('USER_COOKIE', 'wordpressuser_' . COOKIEHASH); |
| 317 | |
| 318 | /** |
| 319 | * It is possible to define this in wp-config.php |
| 320 | * @since 2.0.0 |
| 321 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 322 | if ( !defined('PASS_COOKIE') ) |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 323 | define('PASS_COOKIE', 'wordpresspass_' . COOKIEHASH); |
| 324 | |
| 325 | /** |
| 326 | * It is possible to define this in wp-config.php |
| 327 | * @since 2.5 |
| 328 | */ |
| 329 | if ( !defined('AUTH_COOKIE') ) |
| 330 | define('AUTH_COOKIE', 'wordpress_' . COOKIEHASH); |
| 331 | |
| 332 | /** |
| 333 | * It is possible to define this in wp-config.php |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 334 | * @since 2.6 |
| 335 | */ |
| 336 | if ( !defined('SECURE_AUTH_COOKIE') ) |
| 337 | define('SECURE_AUTH_COOKIE', 'wordpress_sec_' . COOKIEHASH); |
| 338 | |
| 339 | /** |
| 340 | * It is possible to define this in wp-config.php |
| 341 | * @since 2.6 |
| 342 | */ |
| 343 | if ( !defined('LOGGED_IN_COOKIE') ) |
| 344 | define('LOGGED_IN_COOKIE', 'wordpress_logged_in_' . COOKIEHASH); |
| 345 | |
| 346 | /** |
| 347 | * It is possible to define this in wp-config.php |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 348 | * @since 2.3.0 |
| 349 | */ |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 350 | if ( !defined('TEST_COOKIE') ) |
| 351 | define('TEST_COOKIE', 'wordpress_test_cookie'); |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 352 | |
| 353 | /** |
| 354 | * It is possible to define this in wp-config.php |
| 355 | * @since 1.2.0 |
| 356 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 357 | if ( !defined('COOKIEPATH') ) |
| 358 | define('COOKIEPATH', preg_replace('|https?://[^/]+|i', '', get_option('home') . '/' ) ); |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 359 | |
| 360 | /** |
| 361 | * It is possible to define this in wp-config.php |
| 362 | * @since 1.5.0 |
| 363 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 364 | if ( !defined('SITECOOKIEPATH') ) |
| 365 | define('SITECOOKIEPATH', preg_replace('|https?://[^/]+|i', '', get_option('siteurl') . '/' ) ); |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 366 | |
| 367 | /** |
| 368 | * It is possible to define this in wp-config.php |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 369 | * @since 2.6 |
| 370 | */ |
| 371 | if ( !defined('ADMIN_COOKIE_PATH') ) |
| 372 | define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH . 'wp-admin' ); |
| 373 | |
| 374 | /** |
| 375 | * It is possible to define this in wp-config.php |
| 376 | * @since 2.6 |
| 377 | */ |
| 378 | if ( !defined('PLUGINS_COOKIE_PATH') ) |
| 379 | define( 'PLUGINS_COOKIE_PATH', preg_replace('|https?://[^/]+|i', '', WP_PLUGIN_URL) ); |
| 380 | |
| 381 | /** |
| 382 | * It is possible to define this in wp-config.php |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 383 | * @since 2.0.0 |
| 384 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 385 | if ( !defined('COOKIE_DOMAIN') ) |
| 386 | define('COOKIE_DOMAIN', false); |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 387 | |
| 388 | /** |
| 389 | * It is possible to define this in wp-config.php |
| 390 | * @since 2.6 |
| 391 | */ |
| 392 | if ( !defined('FORCE_SSL_ADMIN') ) |
| 393 | define('FORCE_SSL_ADMIN', false); |
| 394 | force_ssl_admin(FORCE_SSL_ADMIN); |
| 395 | |
| 396 | /** |
| 397 | * It is possible to define this in wp-config.php |
| 398 | * @since 2.6 |
| 399 | */ |
| 400 | if ( !defined('FORCE_SSL_LOGIN') ) |
| 401 | define('FORCE_SSL_LOGIN', false); |
| 402 | force_ssl_login(FORCE_SSL_LOGIN); |
| 403 | |
mrowe@apple.com | 83b826c | 2008-04-25 22:44:00 +0000 | [diff] [blame] | 404 | /** |
| 405 | * It is possible to define this in wp-config.php |
| 406 | * @since 2.5.0 |
| 407 | */ |
| 408 | if ( !defined( 'AUTOSAVE_INTERVAL' ) ) |
| 409 | define( 'AUTOSAVE_INTERVAL', 60 ); |
| 410 | |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 411 | |
| 412 | require (ABSPATH . WPINC . '/vars.php'); |
| 413 | |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 414 | // Check for hacks file if the option is enabled |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 415 | if (get_option('hack_file')) { |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 416 | if (file_exists(ABSPATH . 'my-hacks.php')) |
| 417 | require(ABSPATH . 'my-hacks.php'); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 418 | } |
| 419 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 420 | if ( get_option('active_plugins') ) { |
| 421 | $current_plugins = get_option('active_plugins'); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 422 | if ( is_array($current_plugins) ) { |
| 423 | foreach ($current_plugins as $plugin) { |
mrowe@apple.com | 9c406f5 | 2008-08-18 14:54:28 +0000 | [diff] [blame] | 424 | if ( '' != $plugin && 0 == validate_file($plugin) && file_exists(WP_PLUGIN_DIR . '/' . $plugin) ) |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 425 | include_once(WP_PLUGIN_DIR . '/' . $plugin); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 426 | } |
| 427 | } |
| 428 | } |
| 429 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 430 | require (ABSPATH . WPINC . '/pluggable.php'); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 431 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 432 | /* |
| 433 | * In most cases the default internal encoding is latin1, which is of no use, |
| 434 | * since we want to use the mb_ functions for utf-8 strings |
| 435 | */ |
| 436 | if (function_exists('mb_internal_encoding')) { |
| 437 | if (!@mb_internal_encoding(get_option('blog_charset'))) |
| 438 | mb_internal_encoding('UTF-8'); |
| 439 | } |
| 440 | |
| 441 | |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 442 | if ( defined('WP_CACHE') && function_exists('wp_cache_postload') ) |
| 443 | wp_cache_postload(); |
| 444 | |
| 445 | do_action('plugins_loaded'); |
| 446 | |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 447 | $default_constants = array( 'WP_POST_REVISIONS' => true ); |
| 448 | foreach ( $default_constants as $c => $v ) |
| 449 | @define( $c, $v ); // will fail if the constant is already defined |
| 450 | unset($default_constants, $c, $v); |
| 451 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 452 | // If already slashed, strip. |
| 453 | if ( get_magic_quotes_gpc() ) { |
| 454 | $_GET = stripslashes_deep($_GET ); |
| 455 | $_POST = stripslashes_deep($_POST ); |
| 456 | $_COOKIE = stripslashes_deep($_COOKIE); |
| 457 | } |
| 458 | |
| 459 | // Escape with wpdb. |
| 460 | $_GET = add_magic_quotes($_GET ); |
| 461 | $_POST = add_magic_quotes($_POST ); |
| 462 | $_COOKIE = add_magic_quotes($_COOKIE); |
| 463 | $_SERVER = add_magic_quotes($_SERVER); |
| 464 | |
| 465 | do_action('sanitize_comment_cookies'); |
| 466 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 467 | /** |
| 468 | * WordPress Query object |
| 469 | * @global object $wp_the_query |
| 470 | * @since 2.0.0 |
| 471 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 472 | $wp_the_query =& new WP_Query(); |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 473 | |
| 474 | /** |
| 475 | * Holds the reference to @see $wp_the_query |
| 476 | * Use this global for WordPress queries |
| 477 | * @global object $wp_query |
| 478 | * @since 1.5.0 |
| 479 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 480 | $wp_query =& $wp_the_query; |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 481 | |
| 482 | /** |
| 483 | * Holds the WordPress Rewrite object for creating pretty URLs |
| 484 | * @global object $wp_rewrite |
| 485 | * @since 1.5.0 |
| 486 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 487 | $wp_rewrite =& new WP_Rewrite(); |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 488 | |
| 489 | /** |
| 490 | * WordPress Object |
| 491 | * @global object $wp |
| 492 | * @since 2.0.0 |
| 493 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 494 | $wp =& new WP(); |
| 495 | |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 496 | do_action('setup_theme'); |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 497 | |
| 498 | /** |
| 499 | * Web Path to the current active template directory |
| 500 | * @since 1.5 |
| 501 | */ |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 502 | define('TEMPLATEPATH', get_template_directory()); |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 503 | |
| 504 | /** |
| 505 | * Web Path to the current active template stylesheet directory |
| 506 | * @since 2.1 |
| 507 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 508 | define('STYLESHEETPATH', get_stylesheet_directory()); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 509 | |
| 510 | // Load the default text localization domain. |
| 511 | load_default_textdomain(); |
| 512 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 513 | /** |
| 514 | * The locale of the blog |
| 515 | * @since 1.5.0 |
| 516 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 517 | $locale = get_locale(); |
mrowe@apple.com | 3f08527 | 2008-07-21 18:16:22 +0000 | [diff] [blame] | 518 | $locale_file = WP_LANG_DIR . "/$locale.php"; |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 519 | if ( is_readable($locale_file) ) |
| 520 | require_once($locale_file); |
| 521 | |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 522 | // Pull in locale data after loading text domain. |
| 523 | require_once(ABSPATH . WPINC . '/locale.php'); |
| 524 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 525 | /** |
| 526 | * WordPress Locale object for loading locale domain date and various strings. |
| 527 | * @global object $wp_locale |
| 528 | * @since 2.1.0 |
| 529 | */ |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 530 | $wp_locale =& new WP_Locale(); |
| 531 | |
| 532 | // Load functions for active theme. |
| 533 | if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists(STYLESHEETPATH . '/functions.php') ) |
| 534 | include(STYLESHEETPATH . '/functions.php'); |
| 535 | if ( file_exists(TEMPLATEPATH . '/functions.php') ) |
| 536 | include(TEMPLATEPATH . '/functions.php'); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 537 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 538 | /** |
| 539 | * shutdown_action_hook() - Runs just before PHP shuts down execution. |
| 540 | * |
| 541 | * @access private |
| 542 | * @since 1.2 |
| 543 | */ |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 544 | function shutdown_action_hook() { |
| 545 | do_action('shutdown'); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 546 | wp_cache_close(); |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 547 | } |
| 548 | register_shutdown_function('shutdown_action_hook'); |
| 549 | |
mrowe@apple.com | da4c48a | 2008-03-31 22:32:21 +0000 | [diff] [blame] | 550 | $wp->init(); // Sets up current user. |
| 551 | |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 552 | // Everything is loaded and initialized. |
thatcher | 1419f36 | 2006-01-17 23:56:12 +0000 | [diff] [blame] | 553 | do_action('init'); |
bdash | e197471 | 2007-06-04 09:41:09 +0000 | [diff] [blame] | 554 | |
mrowe@apple.com | 39a471e | 2007-10-29 22:16:10 +0000 | [diff] [blame] | 555 | ?> |