root/tags/2.0/wp-settings.php

Revision 3069, 7.6 kB (checked in by matt, 3 years ago)

This should fix permalinks, but may break the PHP as CGI funkiness again

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 <?php
2 // Turn register globals off
3 function unregister_GLOBALS() {
4     if ( !ini_get('register_globals') )
5         return;
6
7     if ( isset($_REQUEST['GLOBALS']) )
8         die('GLOBALS overwrite attempt detected');
9
10     // Variables that shouldn't be unset
11     $noUnset = array('GLOBALS', '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES', 'table_prefix');
12     
13     $input = array_merge($_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_FILES, isset($_SESSION) && is_array($_SESSION) ? $_SESSION : array());
14     foreach ( $input as $k => $v )
15         if ( !in_array($k, $noUnset) && isset($GLOBALS[$k]) )
16             unset($GLOBALS[$k]);
17 }
18
19 unregister_GLOBALS();
20
21 $HTTP_USER_AGENT = getenv('HTTP_USER_AGENT');
22 unset( $wp_filter, $cache_userdata, $cache_lastcommentmodified, $cache_lastpostdate, $cache_settings, $category_cache, $cache_categories );
23
24 if ( ! isset($blog_id) )
25     $blog_id = 1;
26
27 // Fix for IIS, which doesn't set REQUEST_URI
28 if ( empty( $_SERVER['REQUEST_URI'] ) ) {
29     $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME']; // Does this work under CGI?
30     
31     // Append the query string if it exists and isn't null
32     if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) {
33         $_SERVER['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
34     }
35 }
36
37 // Fix for PHP as CGI hosts that set SCRIPT_FILENAME to something ending in php.cgi for all requests
38 if ( strpos($_SERVER['SCRIPT_FILENAME'], 'php.cgi') == strlen($_SERVER['SCRIPT_FILENAME']) - 7 )
39     $_SERVER['SCRIPT_FILENAME'] = $_SERVER['PATH_TRANSLATED'];
40
41 // Fix for Dreamhost and other PHP as CGI hosts
42 if ( strstr( $_SERVER['SCRIPT_NAME'], 'php.cgi' ) )
43     unset($_SERVER['PATH_INFO']);
44
45
46 if ( !(phpversion() >= '4.1') )
47     die( 'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.1' );
48
49 if ( !extension_loaded('mysql') )
50     die( 'Your PHP installation appears to be missing the MySQL which is required for WordPress.' );
51
52 function timer_start() {
53     global $timestart;
54     $mtime = explode(' ', microtime() );
55     $mtime = $mtime[1] + $mtime[0];
56     $timestart = $mtime;
57     return true;
58 }
59 timer_start();
60
61 // Change to E_ALL for development/debugging
62 error_reporting(E_ALL ^ E_NOTICE);
63
64 // For an advanced caching plugin to use, static because you would only want one
65 if ( defined('WP_CACHE') )
66     require (ABSPATH . 'wp-content/advanced-cache.php');
67
68 define('WPINC', 'wp-includes');
69 require_once (ABSPATH . WPINC . '/wp-db.php');
70
71 // Table names
72 $wpdb->posts            = $table_prefix . 'posts';
73 $wpdb->users            = $table_prefix . 'users';
74 $wpdb->categories       = $table_prefix . 'categories';
75 $wpdb->post2cat         = $table_prefix . 'post2cat';
76 $wpdb->comments         = $table_prefix . 'comments';
77 $wpdb->links            = $table_prefix . 'links';
78 $wpdb->linkcategories   = $table_prefix . 'linkcategories';
79 $wpdb->options          = $table_prefix . 'options';
80 $wpdb->postmeta         = $table_prefix . 'postmeta';
81 $wpdb->usermeta         = $table_prefix . 'usermeta';
82
83 $wpdb->prefix           = $table_prefix;
84
85 if ( defined('CUSTOM_USER_TABLE') )
86     $wpdb->users = CUSTOM_USER_TABLE;
87 if ( defined('CUSTOM_USER_META_TABLE') )
88     $wpdb->usermeta = CUSTOM_USER_META_TABLE;
89
90 // We're going to need to keep this around for a few months even though we're not using it internally
91
92 $tableposts = $wpdb->posts;
93 $tableusers = $wpdb->users;
94 $tablecategories = $wpdb->categories;
95 $tablepost2cat = $wpdb->post2cat;
96 $tablecomments = $wpdb->comments;
97 $tablelinks = $wpdb->links;
98 $tablelinkcategories = $wpdb->linkcategories;
99 $tableoptions = $wpdb->options;
100 $tablepostmeta = $wpdb->postmeta;
101
102 if ( file_exists(ABSPATH . 'wp-content/object-cache.php') )
103     require (ABSPATH . 'wp-content/object-cache.php');
104 else
105     require (ABSPATH . WPINC . '/cache.php');
106
107 // For now, disable persistent caching by default.  To enable, comment out
108 // the following line.
109 //define('DISABLE_CACHE', true);
110
111 wp_cache_init();
112
113 $wp_filters = array();
114
115 require (ABSPATH . WPINC . '/functions.php');
116 require (ABSPATH . WPINC . '/default-filters.php');
117 require_once (ABSPATH . WPINC . '/wp-l10n.php');
118
119 $wpdb->hide_errors();
120 $db_check = $wpdb->get_var("SELECT option_value FROM $wpdb->options WHERE option_name = 'siteurl'");
121 if ( !$db_check && (!strstr($_SERVER['PHP_SELF'], 'install.php') && !defined('WP_INSTALLING')) ) {
122     if ( strstr($_SERVER['PHP_SELF'], 'wp-admin') )
123         $link = 'install.php';
124     else
125         $link = 'wp-admin/install.php';
126     die(sprintf(__("It doesn't look like you've installed WP yet. Try running <a href='%s'>install.php</a>."), $link));
127 }
128 $wpdb->show_errors();
129
130 require (ABSPATH . WPINC . '/functions-formatting.php');
131 require (ABSPATH . WPINC . '/functions-post.php');
132 require (ABSPATH . WPINC . '/capabilities.php');
133 require (ABSPATH . WPINC . '/classes.php');
134 require (ABSPATH . WPINC . '/template-functions-general.php');
135 require (ABSPATH . WPINC . '/template-functions-links.php');
136 require (ABSPATH . WPINC . '/template-functions-author.php');
137 require (ABSPATH . WPINC . '/template-functions-post.php');
138 require (ABSPATH . WPINC . '/template-functions-category.php');
139 require (ABSPATH . WPINC . '/comment-functions.php');
140 require (ABSPATH . WPINC . '/feed-functions.php');
141 require (ABSPATH . WPINC . '/links.php');
142 require (ABSPATH . WPINC . '/kses.php');
143 require (ABSPATH . WPINC . '/version.php');
144
145 if (!strstr($_SERVER['PHP_SELF'], 'install.php')) :
146     // Used to guarantee unique hash cookies
147     $cookiehash = md5(get_settings('siteurl')); // Remove in 1.4
148     define('COOKIEHASH', $cookiehash);
149 endif;
150
151 if ( !defined('USER_COOKIE') )
152     define('USER_COOKIE', 'wordpressuser_'. COOKIEHASH);
153 if ( !defined('PASS_COOKIE') )
154     define('PASS_COOKIE', 'wordpresspass_'. COOKIEHASH);
155 if ( !defined('COOKIEPATH') )
156     define('COOKIEPATH', preg_replace('|https?://[^/]+|i', '', get_settings('home') . '/' ) );
157 if ( !defined('SITECOOKIEPATH') )
158     define('SITECOOKIEPATH', preg_replace('|https?://[^/]+|i', '', get_settings('siteurl') . '/' ) );
159 if ( !defined('COOKIE_DOMAIN') )
160     define('COOKIE_DOMAIN', false);
161
162 require (ABSPATH . WPINC . '/vars.php');
163
164 do_action('core_files_loaded');
165
166 // Check for hacks file if the option is enabled
167 if (get_settings('hack_file')) {
168     if (file_exists(ABSPATH . '/my-hacks.php'))
169         require(ABSPATH . '/my-hacks.php');
170 }
171
172 if ( get_settings('active_plugins') ) {
173     $current_plugins = get_settings('active_plugins');
174     if ( is_array($current_plugins) ) {
175         foreach ($current_plugins as $plugin) {
176             if ('' != $plugin && file_exists(ABSPATH . 'wp-content/plugins/' . $plugin))
177                 include_once(ABSPATH . 'wp-content/plugins/' . $plugin);
178         }
179     }
180 }
181
182 require (ABSPATH . WPINC . '/pluggable-functions.php');
183
184 if ( defined('WP_CACHE') && function_exists('wp_cache_postload') )
185     wp_cache_postload();
186
187 do_action('plugins_loaded');
188
189 // If already slashed, strip.
190 if ( get_magic_quotes_gpc() ) {
191     $_GET    = stripslashes_deep($_GET   );
192     $_POST   = stripslashes_deep($_POST  );
193     $_COOKIE = stripslashes_deep($_COOKIE);
194     $_SERVER = stripslashes_deep($_SERVER);
195 }
196
197 // Escape with wpdb.
198 $_GET    = add_magic_quotes($_GET   );
199 $_POST   = add_magic_quotes($_POST  );
200 $_COOKIE = add_magic_quotes($_COOKIE);
201 $_SERVER = add_magic_quotes($_SERVER);
202
203 $wp_query   = new WP_Query();
204 $wp_rewrite = new WP_Rewrite();
205 $wp         = new WP();
206 $wp_roles   = new WP_Roles();
207
208 define('TEMPLATEPATH', get_template_directory());
209
210 // Load the default text localization domain.
211 load_default_textdomain();
212
213 // Pull in locale data after loading text domain.
214 require_once(ABSPATH . WPINC . '/locale.php');
215
216 // Load functions for active theme.
217 if ( file_exists(TEMPLATEPATH . "/functions.php") )
218     include(TEMPLATEPATH . "/functions.php");
219
220 function shutdown_action_hook() {
221     wp_cache_close();
222     do_action('shutdown');
223 }
224 register_shutdown_function('shutdown_action_hook');
225
226 // Everything is loaded and initialized.
227 do_action('init');
228
229 ?>
Note: See TracBrowser for help on using the browser.