2003-06-13 00:44:37 +02:00
|
|
|
<?php
|
2003-12-11 01:22:36 +01:00
|
|
|
$HTTP_HOST = getenv('HTTP_HOST'); /* domain name */
|
|
|
|
$REMOTE_ADDR = getenv('REMOTE_ADDR'); /* visitor's IP */
|
|
|
|
$HTTP_USER_AGENT = getenv('HTTP_USER_AGENT'); /* visitor's browser */
|
|
|
|
|
2004-02-10 09:43:23 +01:00
|
|
|
// Fix for IIS, which doesn't set REQUEST_URI
|
|
|
|
$_SERVER['REQUEST_URI'] = ( isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : $_SERVER['SCRIPT_NAME'] . (( isset($_SERVER['QUERY_STRING']) ? '?' . $_SERVER['QUERY_STRING'] : '')));
|
|
|
|
|
2004-08-11 00:02:26 +02:00
|
|
|
if ( !(phpversion() >= '4.1') )
|
|
|
|
die( 'Your server is running PHP version ' . phpversion() . ' but WordPress requires at least 4.1' );
|
|
|
|
|
|
|
|
|
2004-01-03 00:55:40 +01:00
|
|
|
// Change to E_ALL for development/debugging
|
|
|
|
error_reporting(E_ALL ^ E_NOTICE);
|
|
|
|
|
2004-01-01 00:51:41 +01:00
|
|
|
define('WPINC', 'wp-includes');
|
2004-01-26 17:06:59 +01:00
|
|
|
require_once (ABSPATH . WPINC . '/wp-db.php');
|
2004-01-01 00:51:41 +01:00
|
|
|
|
2004-05-24 10:22:18 +02:00
|
|
|
// Table names
|
|
|
|
$wpdb->posts = $table_prefix . 'posts';
|
|
|
|
$wpdb->users = $table_prefix . 'users';
|
|
|
|
$wpdb->categories = $table_prefix . 'categories';
|
|
|
|
$wpdb->post2cat = $table_prefix . 'post2cat';
|
|
|
|
$wpdb->comments = $table_prefix . 'comments';
|
|
|
|
$wpdb->links = $table_prefix . 'links';
|
|
|
|
$wpdb->linkcategories = $table_prefix . 'linkcategories';
|
|
|
|
$wpdb->options = $table_prefix . 'options';
|
|
|
|
$wpdb->postmeta = $table_prefix . 'postmeta';
|
|
|
|
|
2004-06-01 04:00:44 +02:00
|
|
|
// We're going to need to keep this around for a few months even though we're not using it internally
|
|
|
|
|
|
|
|
$tableposts = $wpdb->posts;
|
|
|
|
$tableusers = $wpdb->users;
|
|
|
|
$tablecategories = $wpdb->categories;
|
|
|
|
$tablepost2cat = $wpdb->post2cat;
|
|
|
|
$tablecomments = $wpdb->comments;
|
|
|
|
$tablelinks = $wpdb->links;
|
|
|
|
$tablelinkcategories = $wpdb->linkcategories;
|
|
|
|
$tableoptions = $wpdb->options;
|
|
|
|
$tablepostmeta = $wpdb->postmeta;
|
|
|
|
|
2004-04-28 01:17:16 +02:00
|
|
|
require (ABSPATH . WPINC . '/functions.php');
|
2004-06-19 19:04:18 +02:00
|
|
|
timer_start();
|
2004-05-08 01:56:33 +02:00
|
|
|
require (ABSPATH . WPINC . '/functions-formatting.php');
|
2004-08-11 00:02:26 +02:00
|
|
|
require (ABSPATH . WPINC . '/functions-user.php');
|
|
|
|
require (ABSPATH . WPINC . '/classes.php');
|
2004-04-28 01:17:16 +02:00
|
|
|
require (ABSPATH . WPINC . '/template-functions.php');
|
|
|
|
require (ABSPATH . WPINC . '/links.php');
|
|
|
|
require (ABSPATH . WPINC . '/kses.php');
|
2004-08-11 00:02:26 +02:00
|
|
|
|
2004-04-16 03:56:04 +02:00
|
|
|
require_once (ABSPATH . WPINC . '/wp-l10n.php');
|
2003-12-04 19:33:33 +01:00
|
|
|
|
2004-06-10 10:42:25 +02:00
|
|
|
$wpdb->hide_errors();
|
|
|
|
if ( !update_user_cache() && !strstr($_SERVER['PHP_SELF'], 'install.php') )
|
|
|
|
die("It doesn't look like you've installed WP yet. Try running <a href='wp-admin/install.php'>install.php</a>.");
|
|
|
|
$wpdb->show_errors();
|
|
|
|
|
2004-08-07 03:22:17 +02:00
|
|
|
if (!strstr($_SERVER['PHP_SELF'], 'install.php') && !strstr($_SERVER['PHP_SELF'], 'wp-admin/import')) :
|
2003-10-07 01:48:17 +02:00
|
|
|
$querystring_start = '?';
|
|
|
|
$querystring_equal = '=';
|
|
|
|
$querystring_separator = '&';
|
2003-10-20 22:53:13 +02:00
|
|
|
|
2004-08-07 03:22:17 +02:00
|
|
|
// Used to guarantee unique hash cookies
|
|
|
|
$cookiehash = md5(get_settings('siteurl'));
|
|
|
|
define('COOKIEHASH', $cookiehash);
|
|
|
|
endif;
|
2003-12-15 09:02:19 +01:00
|
|
|
|
2004-04-28 01:17:16 +02:00
|
|
|
require (ABSPATH . WPINC . '/vars.php');
|
2004-01-01 00:51:41 +01:00
|
|
|
|
|
|
|
|
2004-02-07 23:52:20 +01:00
|
|
|
// Check for hacks file if the option is enabled
|
|
|
|
if (get_settings('hack_file')) {
|
|
|
|
if (file_exists(ABSPATH . '/my-hacks.php'))
|
|
|
|
require(ABSPATH . '/my-hacks.php');
|
|
|
|
}
|
|
|
|
|
2004-08-09 07:42:53 +02:00
|
|
|
if ( get_settings('active_plugins') ) {
|
2004-08-09 09:17:54 +02:00
|
|
|
$current_plugins = get_settings('active_plugins');
|
2004-03-25 09:10:26 +01:00
|
|
|
foreach ($current_plugins as $plugin) {
|
2004-08-11 00:02:26 +02:00
|
|
|
if ('' != $plugin && file_exists(ABSPATH . 'wp-content/plugins/' . $plugin))
|
2004-03-25 09:10:26 +01:00
|
|
|
include(ABSPATH . 'wp-content/plugins/' . $plugin);
|
|
|
|
}
|
|
|
|
}
|
2004-04-19 07:19:45 +02:00
|
|
|
|
|
|
|
function shutdown_action_hook() {
|
|
|
|
do_action('shutdown', '');
|
|
|
|
}
|
|
|
|
register_shutdown_function('shutdown_action_hook');
|
|
|
|
|
|
|
|
?>
|