blob: 466f04a16774c947dbabe97dadb88b0ddae8446c [file] [log] [blame]
thatcher1419f362006-01-17 23:56:12 +00001<?php
mrowe@apple.comda4c48a2008-03-31 22:32:21 +00002/**
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
12if ( !defined('WP_MEMORY_LIMIT') )
13 define('WP_MEMORY_LIMIT', '32M');
14
15if ( 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 */
bdashe1974712007-06-04 09:41:09 +000026function 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.com39a471e2007-10-29 22:16:10 +000037 foreach ( $input as $k => $v )
bdashe1974712007-06-04 09:41:09 +000038 if ( !in_array($k, $noUnset) && isset($GLOBALS[$k]) ) {
39 $GLOBALS[$k] = NULL;
40 unset($GLOBALS[$k]);
41 }
42}
43
mrowe@apple.com39a471e2007-10-29 22:16:10 +000044wp_unregister_GLOBALS();
bdashe1974712007-06-04 09:41:09 +000045
mrowe@apple.comda4c48a2008-03-31 22:32:21 +000046unset( $wp_filter, $cache_lastcommentmodified, $cache_lastpostdate );
bdashe1974712007-06-04 09:41:09 +000047
mrowe@apple.comda4c48a2008-03-31 22:32:21 +000048/**
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 */
bdashe1974712007-06-04 09:41:09 +000055if ( ! isset($blog_id) )
56 $blog_id = 1;
thatcher1419f362006-01-17 23:56:12 +000057
58// Fix for IIS, which doesn't set REQUEST_URI
bdashe1974712007-06-04 09:41:09 +000059if ( empty( $_SERVER['REQUEST_URI'] ) ) {
bdashe1974712007-06-04 09:41:09 +000060
mrowe@apple.com39a471e2007-10-29 22:16:10 +000061 // 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.comda4c48a2008-03-31 22:32:21 +000069 else
70 {
mrowe@apple.com9c406f52008-08-18 14:54:28 +000071 // 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.comda4c48a2008-03-31 22:32:21 +000075 // Some IIS + PHP configurations puts the script-name in the path-info (No need to append it twice)
mrowe@apple.com83b826c2008-04-25 22:44:00 +000076 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.com39a471e2007-10-29 22:16:10 +000082
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 }
thatcher1419f362006-01-17 23:56:12 +000087 }
88}
89
bdashe1974712007-06-04 09:41:09 +000090// Fix for PHP as CGI hosts that set SCRIPT_FILENAME to something ending in php.cgi for all requests
91if ( 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
95if (strpos($_SERVER['SCRIPT_NAME'], 'php.cgi') !== false)
96 unset($_SERVER['PATH_INFO']);
97
98// Fix empty PHP_SELF
99$PHP_SELF = $_SERVER['PHP_SELF'];
100if ( empty($PHP_SELF) )
101 $_SERVER['PHP_SELF'] = $PHP_SELF = preg_replace("/(\?.*)?$/",'',$_SERVER["REQUEST_URI"]);
102
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000103if ( version_compare( '4.3', phpversion(), '>' ) ) {
mrowe@apple.com74efd992008-10-05 02:21:53 +0000104 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.com39a471e2007-10-29 22:16:10 +0000105}
thatcher1419f362006-01-17 23:56:12 +0000106
mrowe@apple.com3f085272008-07-21 18:16:22 +0000107if ( !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
110if ( !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*/ );
thatcher1419f362006-01-17 23:56:12 +0000112
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000113/**
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 */
thatcher1419f362006-01-17 23:56:12 +0000121function timer_start() {
122 global $timestart;
123 $mtime = explode(' ', microtime() );
124 $mtime = $mtime[1] + $mtime[0];
125 $timestart = $mtime;
126 return true;
127}
bdashe1974712007-06-04 09:41:09 +0000128
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000129/**
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 */
bdashe1974712007-06-04 09:41:09 +0000153function 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.com39a471e2007-10-29 22:16:10 +0000160 $r = ( function_exists('number_format_i18n') ) ? number_format_i18n($timetotal, $precision) : number_format($timetotal, $precision);
bdashe1974712007-06-04 09:41:09 +0000161 if ( $display )
162 echo $r;
163 return $r;
164}
thatcher1419f362006-01-17 23:56:12 +0000165timer_start();
166
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000167// Add define('WP_DEBUG',true); to wp-config.php to enable display of notices during development.
168if (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}
thatcher1419f362006-01-17 23:56:12 +0000173
174// For an advanced caching plugin to use, static because you would only want one
175if ( defined('WP_CACHE') )
mrowe@apple.com3f085272008-07-21 18:16:22 +0000176 @include WP_CONTENT_DIR . '/advanced-cache.php';
thatcher1419f362006-01-17 23:56:12 +0000177
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000178/**
179 * Stores the location of the WordPress directory of functions, classes, and core content.
180 *
181 * @since 1.0.0
182 */
thatcher1419f362006-01-17 23:56:12 +0000183define('WPINC', 'wp-includes');
bdashe1974712007-06-04 09:41:09 +0000184
mrowe@apple.com3f085272008-07-21 18:16:22 +0000185if ( !defined('WP_LANG_DIR') ) {
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000186 /**
mrowe@apple.com3f085272008-07-21 18:16:22 +0000187 * Stores the location of the language directory. First looks for language folder in WP_CONTENT_DIR
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000188 * and uses that folder if it exists. Or it uses the "languages" folder in WPINC.
189 *
190 * @since 2.1.0
191 */
mrowe@apple.com3f085272008-07-21 18:16:22 +0000192 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 }
bdashe1974712007-06-04 09:41:09 +0000205}
206
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000207require (ABSPATH . WPINC . '/compat.php');
208require (ABSPATH . WPINC . '/functions.php');
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000209require (ABSPATH . WPINC . '/classes.php');
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000210
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000211require_wp_db();
bdashe1974712007-06-04 09:41:09 +0000212
mrowe@apple.combea3bc82007-12-30 16:21:36 +0000213if ( !empty($wpdb->error) )
214 dead_db();
215
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000216$prefix = $wpdb->set_prefix($table_prefix);
bdashe1974712007-06-04 09:41:09 +0000217
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000218if ( is_wp_error($prefix) )
mrowe@apple.com3f085272008-07-21 18:16:22 +0000219 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*/);
thatcher1419f362006-01-17 23:56:12 +0000220
mrowe@apple.com3f085272008-07-21 18:16:22 +0000221if ( file_exists(WP_CONTENT_DIR . '/object-cache.php') )
222 require_once (WP_CONTENT_DIR . '/object-cache.php');
bdashe1974712007-06-04 09:41:09 +0000223else
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000224 require_once (ABSPATH . WPINC . '/cache.php');
thatcher1419f362006-01-17 23:56:12 +0000225
bdashe1974712007-06-04 09:41:09 +0000226wp_cache_init();
mrowe@apple.com3f085272008-07-21 18:16:22 +0000227if ( 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}
thatcher1419f362006-01-17 23:56:12 +0000231
bdashe1974712007-06-04 09:41:09 +0000232require (ABSPATH . WPINC . '/plugin.php');
thatcher1419f362006-01-17 23:56:12 +0000233require (ABSPATH . WPINC . '/default-filters.php');
bdashe1974712007-06-04 09:41:09 +0000234include_once(ABSPATH . WPINC . '/streams.php');
235include_once(ABSPATH . WPINC . '/gettext.php');
236require_once (ABSPATH . WPINC . '/l10n.php');
thatcher1419f362006-01-17 23:56:12 +0000237
bdashe1974712007-06-04 09:41:09 +0000238if ( !is_blog_installed() && (strpos($_SERVER['PHP_SELF'], 'install.php') === false && !defined('WP_INSTALLING')) ) {
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000239 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';
thatcher1419f362006-01-17 23:56:12 +0000243 else
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000244 $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
thatcher1419f362006-01-17 23:56:12 +0000249}
thatcher1419f362006-01-17 23:56:12 +0000250
bdashe1974712007-06-04 09:41:09 +0000251require (ABSPATH . WPINC . '/formatting.php');
252require (ABSPATH . WPINC . '/capabilities.php');
253require (ABSPATH . WPINC . '/query.php');
254require (ABSPATH . WPINC . '/theme.php');
255require (ABSPATH . WPINC . '/user.php');
256require (ABSPATH . WPINC . '/general-template.php');
257require (ABSPATH . WPINC . '/link-template.php');
258require (ABSPATH . WPINC . '/author-template.php');
259require (ABSPATH . WPINC . '/post.php');
260require (ABSPATH . WPINC . '/post-template.php');
261require (ABSPATH . WPINC . '/category.php');
262require (ABSPATH . WPINC . '/category-template.php');
263require (ABSPATH . WPINC . '/comment.php');
264require (ABSPATH . WPINC . '/comment-template.php');
265require (ABSPATH . WPINC . '/rewrite.php');
266require (ABSPATH . WPINC . '/feed.php');
267require (ABSPATH . WPINC . '/bookmark.php');
268require (ABSPATH . WPINC . '/bookmark-template.php');
thatcher1419f362006-01-17 23:56:12 +0000269require (ABSPATH . WPINC . '/kses.php');
bdashe1974712007-06-04 09:41:09 +0000270require (ABSPATH . WPINC . '/cron.php');
thatcher1419f362006-01-17 23:56:12 +0000271require (ABSPATH . WPINC . '/version.php');
bdashe1974712007-06-04 09:41:09 +0000272require (ABSPATH . WPINC . '/deprecated.php');
273require (ABSPATH . WPINC . '/script-loader.php');
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000274require (ABSPATH . WPINC . '/taxonomy.php');
275require (ABSPATH . WPINC . '/update.php');
276require (ABSPATH . WPINC . '/canonical.php');
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000277require (ABSPATH . WPINC . '/shortcodes.php');
278require (ABSPATH . WPINC . '/media.php');
thatcher1419f362006-01-17 23:56:12 +0000279
mrowe@apple.com3f085272008-07-21 18:16:22 +0000280if ( !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 */
288if ( !defined('WP_PLUGIN_DIR') )
289 define( 'WP_PLUGIN_DIR', WP_CONTENT_DIR . '/plugins' ); // full path, no trailing slash
290if ( !defined('WP_PLUGIN_URL') )
291 define( 'WP_PLUGIN_URL', WP_CONTENT_URL . '/plugins' ); // full url, no trailing slash
292if ( !defined('PLUGINDIR') )
293 define( 'PLUGINDIR', 'wp-content/plugins' ); // Relative to ABSPATH. For back compat.
294
295if ( ! defined('WP_INSTALLING') ) {
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000296 // 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.com39a471e2007-10-29 22:16:10 +0000302 define('COOKIEHASH', $cookiehash);
bdashe1974712007-06-04 09:41:09 +0000303}
304
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000305/**
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 */
bdashe1974712007-06-04 09:41:09 +0000315if ( !defined('USER_COOKIE') )
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000316 define('USER_COOKIE', 'wordpressuser_' . COOKIEHASH);
317
318/**
319 * It is possible to define this in wp-config.php
320 * @since 2.0.0
321 */
bdashe1974712007-06-04 09:41:09 +0000322if ( !defined('PASS_COOKIE') )
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000323 define('PASS_COOKIE', 'wordpresspass_' . COOKIEHASH);
324
325/**
326 * It is possible to define this in wp-config.php
327 * @since 2.5
328 */
329if ( !defined('AUTH_COOKIE') )
330 define('AUTH_COOKIE', 'wordpress_' . COOKIEHASH);
331
332/**
333 * It is possible to define this in wp-config.php
mrowe@apple.com3f085272008-07-21 18:16:22 +0000334 * @since 2.6
335 */
336if ( !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 */
343if ( !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.comda4c48a2008-03-31 22:32:21 +0000348 * @since 2.3.0
349 */
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000350if ( !defined('TEST_COOKIE') )
351 define('TEST_COOKIE', 'wordpress_test_cookie');
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000352
353/**
354 * It is possible to define this in wp-config.php
355 * @since 1.2.0
356 */
bdashe1974712007-06-04 09:41:09 +0000357if ( !defined('COOKIEPATH') )
358 define('COOKIEPATH', preg_replace('|https?://[^/]+|i', '', get_option('home') . '/' ) );
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000359
360/**
361 * It is possible to define this in wp-config.php
362 * @since 1.5.0
363 */
bdashe1974712007-06-04 09:41:09 +0000364if ( !defined('SITECOOKIEPATH') )
365 define('SITECOOKIEPATH', preg_replace('|https?://[^/]+|i', '', get_option('siteurl') . '/' ) );
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000366
367/**
368 * It is possible to define this in wp-config.php
mrowe@apple.com3f085272008-07-21 18:16:22 +0000369 * @since 2.6
370 */
371if ( !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 */
378if ( !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.comda4c48a2008-03-31 22:32:21 +0000383 * @since 2.0.0
384 */
bdashe1974712007-06-04 09:41:09 +0000385if ( !defined('COOKIE_DOMAIN') )
386 define('COOKIE_DOMAIN', false);
mrowe@apple.com3f085272008-07-21 18:16:22 +0000387
388/**
389 * It is possible to define this in wp-config.php
390 * @since 2.6
391 */
392if ( !defined('FORCE_SSL_ADMIN') )
393 define('FORCE_SSL_ADMIN', false);
394force_ssl_admin(FORCE_SSL_ADMIN);
395
396/**
397 * It is possible to define this in wp-config.php
398 * @since 2.6
399 */
400if ( !defined('FORCE_SSL_LOGIN') )
401 define('FORCE_SSL_LOGIN', false);
402force_ssl_login(FORCE_SSL_LOGIN);
403
mrowe@apple.com83b826c2008-04-25 22:44:00 +0000404/**
405 * It is possible to define this in wp-config.php
406 * @since 2.5.0
407 */
408if ( !defined( 'AUTOSAVE_INTERVAL' ) )
409 define( 'AUTOSAVE_INTERVAL', 60 );
410
thatcher1419f362006-01-17 23:56:12 +0000411
412require (ABSPATH . WPINC . '/vars.php');
413
thatcher1419f362006-01-17 23:56:12 +0000414// Check for hacks file if the option is enabled
bdashe1974712007-06-04 09:41:09 +0000415if (get_option('hack_file')) {
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000416 if (file_exists(ABSPATH . 'my-hacks.php'))
417 require(ABSPATH . 'my-hacks.php');
thatcher1419f362006-01-17 23:56:12 +0000418}
419
bdashe1974712007-06-04 09:41:09 +0000420if ( get_option('active_plugins') ) {
421 $current_plugins = get_option('active_plugins');
thatcher1419f362006-01-17 23:56:12 +0000422 if ( is_array($current_plugins) ) {
423 foreach ($current_plugins as $plugin) {
mrowe@apple.com9c406f52008-08-18 14:54:28 +0000424 if ( '' != $plugin && 0 == validate_file($plugin) && file_exists(WP_PLUGIN_DIR . '/' . $plugin) )
mrowe@apple.com3f085272008-07-21 18:16:22 +0000425 include_once(WP_PLUGIN_DIR . '/' . $plugin);
thatcher1419f362006-01-17 23:56:12 +0000426 }
427 }
428}
429
bdashe1974712007-06-04 09:41:09 +0000430require (ABSPATH . WPINC . '/pluggable.php');
thatcher1419f362006-01-17 23:56:12 +0000431
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000432/*
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 */
436if (function_exists('mb_internal_encoding')) {
437 if (!@mb_internal_encoding(get_option('blog_charset')))
438 mb_internal_encoding('UTF-8');
439}
440
441
thatcher1419f362006-01-17 23:56:12 +0000442if ( defined('WP_CACHE') && function_exists('wp_cache_postload') )
443 wp_cache_postload();
444
445do_action('plugins_loaded');
446
mrowe@apple.com3f085272008-07-21 18:16:22 +0000447$default_constants = array( 'WP_POST_REVISIONS' => true );
448foreach ( $default_constants as $c => $v )
449 @define( $c, $v ); // will fail if the constant is already defined
450unset($default_constants, $c, $v);
451
bdashe1974712007-06-04 09:41:09 +0000452// If already slashed, strip.
453if ( 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
465do_action('sanitize_comment_cookies');
466
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000467/**
468 * WordPress Query object
469 * @global object $wp_the_query
470 * @since 2.0.0
471 */
bdashe1974712007-06-04 09:41:09 +0000472$wp_the_query =& new WP_Query();
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000473
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 */
bdashe1974712007-06-04 09:41:09 +0000480$wp_query =& $wp_the_query;
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000481
482/**
483 * Holds the WordPress Rewrite object for creating pretty URLs
484 * @global object $wp_rewrite
485 * @since 1.5.0
486 */
bdashe1974712007-06-04 09:41:09 +0000487$wp_rewrite =& new WP_Rewrite();
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000488
489/**
490 * WordPress Object
491 * @global object $wp
492 * @since 2.0.0
493 */
bdashe1974712007-06-04 09:41:09 +0000494$wp =& new WP();
495
mrowe@apple.com3f085272008-07-21 18:16:22 +0000496do_action('setup_theme');
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000497
498/**
499 * Web Path to the current active template directory
500 * @since 1.5
501 */
thatcher1419f362006-01-17 23:56:12 +0000502define('TEMPLATEPATH', get_template_directory());
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000503
504/**
505 * Web Path to the current active template stylesheet directory
506 * @since 2.1
507 */
bdashe1974712007-06-04 09:41:09 +0000508define('STYLESHEETPATH', get_stylesheet_directory());
thatcher1419f362006-01-17 23:56:12 +0000509
510// Load the default text localization domain.
511load_default_textdomain();
512
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000513/**
514 * The locale of the blog
515 * @since 1.5.0
516 */
bdashe1974712007-06-04 09:41:09 +0000517$locale = get_locale();
mrowe@apple.com3f085272008-07-21 18:16:22 +0000518$locale_file = WP_LANG_DIR . "/$locale.php";
bdashe1974712007-06-04 09:41:09 +0000519if ( is_readable($locale_file) )
520 require_once($locale_file);
521
thatcher1419f362006-01-17 23:56:12 +0000522// Pull in locale data after loading text domain.
523require_once(ABSPATH . WPINC . '/locale.php');
524
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000525/**
526 * WordPress Locale object for loading locale domain date and various strings.
527 * @global object $wp_locale
528 * @since 2.1.0
529 */
bdashe1974712007-06-04 09:41:09 +0000530$wp_locale =& new WP_Locale();
531
532// Load functions for active theme.
533if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists(STYLESHEETPATH . '/functions.php') )
534 include(STYLESHEETPATH . '/functions.php');
535if ( file_exists(TEMPLATEPATH . '/functions.php') )
536 include(TEMPLATEPATH . '/functions.php');
thatcher1419f362006-01-17 23:56:12 +0000537
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000538/**
539 * shutdown_action_hook() - Runs just before PHP shuts down execution.
540 *
541 * @access private
542 * @since 1.2
543 */
thatcher1419f362006-01-17 23:56:12 +0000544function shutdown_action_hook() {
545 do_action('shutdown');
bdashe1974712007-06-04 09:41:09 +0000546 wp_cache_close();
thatcher1419f362006-01-17 23:56:12 +0000547}
548register_shutdown_function('shutdown_action_hook');
549
mrowe@apple.comda4c48a2008-03-31 22:32:21 +0000550$wp->init(); // Sets up current user.
551
bdashe1974712007-06-04 09:41:09 +0000552// Everything is loaded and initialized.
thatcher1419f362006-01-17 23:56:12 +0000553do_action('init');
bdashe1974712007-06-04 09:41:09 +0000554
mrowe@apple.com39a471e2007-10-29 22:16:10 +0000555?>