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-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->optiontypes = $table_prefix . 'optiontypes';
|
|
|
|
$wpdb->optionvalues = $table_prefix . 'optionvalues';
|
|
|
|
$wpdb->optiongroups = $table_prefix . 'optiongroups';
|
|
|
|
$wpdb->optiongroup_options = $table_prefix . 'optiongroup_options';
|
|
|
|
$wpdb->postmeta = $table_prefix . 'postmeta';
|
|
|
|
|
2004-01-01 00:51:41 +01:00
|
|
|
$wpdb->hide_errors();
|
2004-05-24 10:22:18 +02:00
|
|
|
$users = $wpdb->get_results("SELECT * FROM $wpdb->users");
|
2004-05-01 09:55:00 +02:00
|
|
|
if (!$users && !strstr($_SERVER['PHP_SELF'], 'install.php')) {
|
2004-01-01 00:51:41 +01:00
|
|
|
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();
|
2003-12-04 19:33:33 +01:00
|
|
|
|
2004-04-28 01:17:16 +02:00
|
|
|
require (ABSPATH . WPINC . '/functions.php');
|
2004-05-08 01:56:33 +02:00
|
|
|
require (ABSPATH . WPINC . '/functions-formatting.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-04-16 03:56:04 +02:00
|
|
|
require_once (ABSPATH . WPINC . '/wp-l10n.php');
|
2003-12-04 19:33:33 +01:00
|
|
|
|
2004-05-01 09:55:00 +02:00
|
|
|
if (!strstr($_SERVER['PHP_SELF'], 'install.php') && !strstr($_SERVER['PHP_SELF'], 'wp-admin/import')) {
|
2003-06-13 00:44:37 +02:00
|
|
|
|
2003-10-07 01:48:17 +02:00
|
|
|
$querystring_start = '?';
|
|
|
|
$querystring_equal = '=';
|
|
|
|
$querystring_separator = '&';
|
|
|
|
//}
|
2003-10-20 22:53:13 +02:00
|
|
|
// Used to guarantee unique cookies
|
2004-02-26 17:15:48 +01:00
|
|
|
$cookiehash = md5(get_settings('siteurl'));
|
2003-10-20 22:53:13 +02:00
|
|
|
|
2003-06-16 01:18:33 +02:00
|
|
|
} //end !$_wp_installing
|
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-05-01 09:55:00 +02:00
|
|
|
if (!strstr($_SERVER['PHP_SELF'], 'wp-admin/plugins.php') && get_settings('active_plugins')) {
|
2004-03-25 09:10:26 +01:00
|
|
|
$current_plugins = explode("\n", (get_settings('active_plugins')));
|
|
|
|
foreach ($current_plugins as $plugin) {
|
|
|
|
if (file_exists(ABSPATH . 'wp-content/plugins/' . $plugin))
|
|
|
|
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');
|
|
|
|
|
|
|
|
?>
|