2003-06-13 00:44:37 +02:00
|
|
|
<?php
|
2003-12-11 01:22:36 +01:00
|
|
|
// This is the name of the include directory. No "/" allowed.
|
|
|
|
$b2inc = 'wp-includes';
|
|
|
|
|
|
|
|
require ($abspath . 'wp-config-extra.php');
|
|
|
|
require ($abspath . $b2inc . '/wp-db.php');
|
|
|
|
require ($abspath . $b2inc . '/functions.php');
|
|
|
|
require ($abspath . $b2inc . '/template-functions.php');
|
|
|
|
require ($abspath . $b2inc . '/vars.php');
|
|
|
|
require ($abspath . $b2inc . '/class-xmlrpc.php');
|
|
|
|
require ($abspath . $b2inc . '/class-xmlrpcs.php');
|
|
|
|
require ($abspath . '/wp-links/links.php');
|
|
|
|
|
|
|
|
$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 */
|
|
|
|
|
2003-12-04 19:33:33 +01:00
|
|
|
// Table names
|
|
|
|
$tableposts = $table_prefix . 'posts';
|
|
|
|
$tableusers = $table_prefix . 'users';
|
|
|
|
$tablesettings = $table_prefix . 'settings'; // only used during upgrade
|
|
|
|
$tablecategories = $table_prefix . 'categories';
|
|
|
|
$tablepost2cat = $table_prefix . 'post2cat';
|
|
|
|
$tablecomments = $table_prefix . 'comments';
|
|
|
|
$tablelinks = $table_prefix . 'links';
|
|
|
|
$tablelinkcategories = $table_prefix . 'linkcategories';
|
|
|
|
$tableoptions = $table_prefix . 'options';
|
|
|
|
$tableoptiontypes = $table_prefix . 'optiontypes';
|
|
|
|
$tableoptionvalues = $table_prefix . 'optionvalues';
|
|
|
|
$tableoptiongroups = $table_prefix . 'optiongroups';
|
|
|
|
$tableoptiongroup_options = $table_prefix . 'optiongroup_options';
|
|
|
|
|
|
|
|
|
2003-06-13 00:44:37 +02:00
|
|
|
//setup the old globals from b2config.php
|
|
|
|
//
|
|
|
|
// We should eventually migrate to either calling
|
|
|
|
// get_settings() wherever these are needed OR
|
|
|
|
// accessing a single global $all_settings var
|
2003-11-30 01:55:19 +01:00
|
|
|
if (!isset($_wp_installing) || !$_wp_installing) {
|
2003-06-16 01:18:33 +02:00
|
|
|
$siteurl = get_settings('siteurl');
|
2003-11-11 21:57:43 +01:00
|
|
|
// "When trying to design a foolproof system,
|
|
|
|
// never underestimate the ingenuity of the fools :)"
|
|
|
|
//
|
|
|
|
// Strip trailing slashes from $siteurl. But don't do
|
|
|
|
// anything that could cause an infinite loop.
|
|
|
|
while (('/' == substr($siteurl, -1)) && (10 > $i++)) {
|
|
|
|
$siteurl = substr($siteurl, 0, -1);
|
|
|
|
}
|
2003-06-16 01:18:33 +02:00
|
|
|
$blogfilename = get_settings('blogfilename');
|
|
|
|
$blogname = get_settings('blogname');
|
|
|
|
$blogdescription = get_settings('blogdescription');
|
|
|
|
$admin_email = get_settings('admin_email');
|
|
|
|
$new_users_can_blog = get_settings('new_users_can_blog');
|
|
|
|
$users_can_register = get_settings('users_can_register');
|
|
|
|
$start_of_week = get_settings('start_of_week');
|
|
|
|
$use_bbcode = get_settings('use_bbcode');
|
|
|
|
$use_gmcode = get_settings('use_gmcode');
|
|
|
|
$use_quicktags = get_settings('use_quicktags');
|
|
|
|
$use_htmltrans = get_settings('use_htmltrans');
|
|
|
|
$use_balanceTags = get_settings('use_balanceTags');
|
|
|
|
$use_fileupload = get_settings('use_fileupload');
|
|
|
|
$fileupload_realpath = get_settings('fileupload_realpath');
|
|
|
|
$fileupload_url = get_settings('fileupload_url');
|
|
|
|
$fileupload_allowedtypes = get_settings('fileupload_allowedtypes');
|
|
|
|
$fileupload_maxk = get_settings('fileupload_maxk');
|
|
|
|
$fileupload_minlevel = get_settings('fileupload_minlevel');
|
|
|
|
$fileupload_allowedusers = get_settings('fileupload_allowedusers');
|
|
|
|
$posts_per_rss = get_settings('posts_per_rss');
|
|
|
|
$rss_language = get_settings('rss_language');
|
|
|
|
$rss_encoded_html = get_settings('rss_encoded_html');
|
|
|
|
$rss_excerpt_length = get_settings('rss_excerpt_length');
|
|
|
|
$rss_use_excerpt = get_settings('rss_use_excerpt');
|
|
|
|
$use_weblogsping = get_settings('use_weblogsping');
|
|
|
|
$use_blodotgsping = get_settings('use_blodotgsping');
|
|
|
|
$blodotgsping_url = get_settings('blodotgsping_url');
|
|
|
|
$use_trackback = get_settings('use_trackback');
|
|
|
|
$use_pingback = get_settings('use_pingback');
|
|
|
|
$require_name_email = get_settings('require_name_email');
|
|
|
|
$comment_allowed_tags = get_settings('comment_allowed_tags');
|
|
|
|
$comments_notify = get_settings('comments_notify');
|
|
|
|
$use_smilies = get_settings('use_smilies');
|
|
|
|
$smilies_directory = get_settings('smilies_directory');
|
|
|
|
$mailserver_url = get_settings('mailserver_url');
|
|
|
|
$mailserver_login = get_settings('mailserver_login');
|
|
|
|
$mailserver_pass = get_settings('mailserver_pass');
|
|
|
|
$mailserver_port = get_settings('mailserver_port');
|
|
|
|
$default_category = get_settings('default_category');
|
|
|
|
$subjectprefix = get_settings('subjectprefix');
|
|
|
|
$bodyterminator = get_settings('bodyterminator');
|
|
|
|
$emailtestonly = get_settings('emailtestonly');
|
|
|
|
$use_phoneemail = get_settings('use_phoneemail');
|
|
|
|
$phoneemail_separator = get_settings('phoneemail_separator');
|
2003-11-05 01:44:03 +01:00
|
|
|
$use_default_geourl = get_settings('use_default_geourl');
|
|
|
|
$default_geourl_lat = get_settings('default_geourl_lat');
|
|
|
|
$default_geourl_lon = get_settings('default_geourl_lon');
|
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
|
|
|
|
$cookiehash = md5($siteurl);
|
|
|
|
|
2003-06-16 01:18:33 +02:00
|
|
|
} //end !$_wp_installing
|
2003-06-13 00:44:37 +02:00
|
|
|
?>
|