2003-12-11 01:22:36 +01:00
< ? php
2004-07-06 19:58:48 +02:00
if ( ! file_exists ( dirname ( __FILE__ ) . '/wp-config.php' ) )
2004-05-18 22:05:40 +02:00
die ( " There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href='http://wordpress.org/docs/faq/#wp-config'>We got it</a>. You can <a href='wp-admin/setup-config.php'>create a <code>wp-config.php</code> file through a web interface</a>, but this doesn't work for all server setups. The safest way is to manually create the file. " );
2003-12-11 01:22:36 +01:00
2004-07-06 19:58:48 +02:00
require_once ( dirname ( __FILE__ ) . '/wp-config.php' );
2003-12-11 01:22:36 +01:00
2004-07-06 19:58:48 +02:00
require_once ( dirname ( __FILE__ ) . '/wp-includes/wp-l10n.php' );
2004-05-14 22:46:05 +02:00
2004-05-09 07:54:17 +02:00
// Process PATH_INFO, if set.
2004-02-17 03:50:57 +01:00
$path_info = array ();
2004-07-06 19:58:48 +02:00
if ( ! empty ( $_SERVER [ 'PATH_INFO' ] ) ) {
2004-02-17 03:50:57 +01:00
// Fetch the rewrite rules.
$rewrite = rewrite_rules ( 'matches' );
$pathinfo = $_SERVER [ 'PATH_INFO' ];
// Trim leading '/'.
2004-07-06 19:58:48 +02:00
$pathinfo = preg_replace ( '!^/!' , '' , $pathinfo );
2004-02-17 03:50:57 +01:00
if ( ! empty ( $rewrite )) {
// Get the name of the file requesting path info.
2004-04-21 00:56:47 +02:00
$req_uri = $_SERVER [ 'REQUEST_URI' ];
2004-02-17 03:50:57 +01:00
$req_uri = str_replace ( $pathinfo , '' , $req_uri );
$req_uri = preg_replace ( " !/+ $ ! " , '' , $req_uri );
$req_uri = explode ( '/' , $req_uri );
$req_uri = $req_uri [ count ( $req_uri ) - 1 ];
// Look for matches.
$pathinfomatch = $pathinfo ;
foreach ( $rewrite as $match => $query ) {
// If the request URI is the anchor of the match, prepend it
// to the path info.
2004-03-14 17:43:55 +01:00
if (( ! empty ( $req_uri )) && ( strpos ( $match , $req_uri ) === 0 )) {
2004-02-17 03:50:57 +01:00
$pathinfomatch = $req_uri . '/' . $pathinfo ;
}
if ( preg_match ( " !^ $match ! " , $pathinfomatch , $matches )) {
// Got a match.
// Trim the query of everything up to the '?'.
$query = preg_replace ( " !^.+ \ ?! " , '' , $query );
// Substitute the substring matches into the query.
eval ( " \$ query = \" $query\ " ; " );
// Parse the query.
parse_str ( $query , $path_info );
2004-06-02 07:16:44 +02:00
break ;
2004-02-17 03:50:57 +01:00
}
}
}
}
2004-08-11 03:55:34 +02:00
$wpvarstoreset = array ( 'm' , 'p' , 'posts' , 'w' , 'cat' , 'withcomments' , 's' , 'search' , 'exact' , 'sentence' , 'poststart' , 'postend' , 'preview' , 'debug' , 'calendar' , 'page' , 'paged' , 'more' , 'tb' , 'pb' , 'author' , 'order' , 'orderby' , 'year' , 'monthnum' , 'day' , 'hour' , 'minute' , 'second' , 'name' , 'category_name' , 'feed' , 'author_name' , 'static' , 'pagename' );
2003-12-11 01:22:36 +01:00
2004-07-06 19:58:48 +02:00
for ( $i = 0 ; $i < count ( $wpvarstoreset ); $i += 1 ) {
$wpvar = $wpvarstoreset [ $i ];
if ( ! isset ( $$wpvar )) {
if ( empty ( $_POST [ $wpvar ])) {
if ( empty ( $_GET [ $wpvar ]) && empty ( $path_info [ $wpvar ])) {
$$wpvar = '' ;
} elseif ( ! empty ( $_GET [ $wpvar ])) {
$$wpvar = $_GET [ $wpvar ];
} else {
$$wpvar = $path_info [ $wpvar ];
}
} else {
$$wpvar = $_POST [ $wpvar ];
}
}
}
2003-12-11 01:22:36 +01:00
2004-07-06 19:58:48 +02:00
if ( '' != $feed ) {
$doing_rss = true ;
2004-06-01 01:35:32 +02:00
}
2004-07-06 19:58:48 +02:00
if ( 1 == $tb ) {
$doing_trackback = true ;
2004-06-01 01:35:32 +02:00
}
2003-12-11 01:22:36 +01:00
2004-05-09 07:54:17 +02:00
// Sending HTTP headers
2004-02-22 04:29:54 +01:00
2004-07-06 19:58:48 +02:00
if ( ! isset ( $doing_rss ) || ! $doing_rss ) {
2004-02-26 17:15:48 +01:00
@ header ( 'X-Pingback: ' . get_settings ( 'siteurl' ) . '/xmlrpc.php' );
2004-02-22 04:29:54 +01:00
} else {
// We're showing a feed, so WP is indeed the only thing that last changed
2004-05-22 00:33:47 +02:00
$wp_last_modified = mysql2date ( 'D, d M Y H:i:s' , get_lastpostmodified ( 'GMT' ), 0 ) . ' GMT' ;
2004-07-06 19:58:48 +02:00
$wp_etag = '"' . md5 ( $wp_last_modified ) . '"' ;
2004-06-19 19:34:13 +02:00
@ header ( 'Last-Modified: ' . $wp_last_modified );
2004-03-31 23:19:58 +02:00
@ header ( 'ETag: ' . $wp_etag );
2004-02-26 17:15:48 +01:00
@ header ( 'X-Pingback: ' . get_settings ( 'siteurl' ) . '/xmlrpc.php' );
2004-03-31 05:54:58 +02:00
2004-03-31 23:19:58 +02:00
// Support for Conditional GET
2004-05-10 09:51:50 +02:00
if ( isset ( $_SERVER [ 'HTTP_IF_MODIFIED_SINCE' ])) $client_last_modified = $_SERVER [ 'HTTP_IF_MODIFIED_SINCE' ];
else $client_last_modified = false ;
if ( isset ( $_SERVER [ 'HTTP_IF_NONE_MATCH' ])) $client_etag = stripslashes ( $_SERVER [ 'HTTP_IF_NONE_MATCH' ]);
else $client_etag = false ;
2004-03-31 23:19:58 +02:00
if ( ( $client_last_modified && $client_etag ) ?
(( $client_last_modified == $wp_last_modified ) && ( $client_etag == $wp_etag )) :
(( $client_last_modified == $wp_last_modified ) || ( $client_etag == $wp_etag )) ) {
2004-05-22 00:33:47 +02:00
if ( preg_match ( '/cgi/' , php_sapi_name ()) ) {
header ( 'HTTP/1.1 304 Not Modified' );
echo " \r \n \r \n " ;
exit ;
} else {
if ( version_compare ( phpversion (), '4.3.0' , '>=' )) {
header ( 'Not Modified' , TRUE , 304 );
} else {
header ( 'HTTP/1.x 304 Not Modified' );
}
2004-07-06 20:20:11 +02:00
exit ;
2004-05-22 00:33:47 +02:00
}
2004-03-31 05:54:58 +02:00
}
2004-02-22 04:29:54 +01:00
}
2003-12-11 01:22:36 +01:00
2004-05-09 07:54:17 +02:00
// Getting settings from DB
2004-07-06 19:58:48 +02:00
if ( isset ( $doing_rss ) && $doing_rss == 1 )
$posts_per_page = get_settings ( 'posts_per_rss' );
if ( ! isset ( $posts_per_page ) || $posts_per_page == 0 )
2003-12-11 01:22:36 +01:00
$posts_per_page = get_settings ( 'posts_per_page' );
2004-07-06 19:58:48 +02:00
if ( ! isset ( $what_to_show ) )
2004-05-18 20:37:57 +02:00
$what_to_show = get_settings ( 'what_to_show' );
2004-07-06 19:58:48 +02:00
if ( isset ( $showposts ) && $showposts ) {
$showposts = ( int ) $showposts ;
2004-01-27 07:35:07 +01:00
$posts_per_page = $showposts ;
2003-12-11 01:22:36 +01:00
}
2004-08-17 00:50:06 +02:00
if ( ! isset ( $nopaging ) ) {
$nopaging = '' ;
}
2004-07-06 19:58:48 +02:00
2004-05-24 04:55:39 +02:00
$archive_mode = get_settings ( 'archive_mode' );
$use_gzipcompression = get_settings ( 'gzipcompression' );
2004-02-25 05:08:54 +01:00
2004-08-17 00:50:06 +02:00
$more_wpvars = array ( 'posts_per_page' , 'what_to_show' , 'showposts' , 'nopaging' );
2004-02-11 05:51:19 +01:00
2004-05-24 04:55:39 +02:00
// Construct the query string.
$query_string = '' ;
foreach ( array_merge ( $wpvarstoreset , $more_wpvars ) as $wpvar ) {
2004-07-06 19:58:48 +02:00
if ( $$wpvar != '' ) {
$query_string .= ( strlen ( $query_string ) < 1 ) ? '' : '&' ;
$query_string .= $wpvar . '=' . rawurlencode ( $$wpvar );
}
2004-02-11 05:51:19 +01:00
}
2004-06-21 00:36:45 +02:00
$query_string = apply_filters ( 'query_string' , $query_string );
2004-05-24 04:55:39 +02:00
update_category_cache ();
2003-12-11 01:22:36 +01:00
2004-05-24 04:55:39 +02:00
// Call query posts to do the work.
$posts = query_posts ( $query_string );
2003-12-11 01:22:36 +01:00
2004-05-24 04:55:39 +02:00
if ( 1 == count ( $posts )) {
2004-07-28 04:43:54 +02:00
if ( is_single ()) {
2004-07-06 19:58:48 +02:00
$more = 1 ;
$single = 1 ;
}
if ( $s && empty ( $paged ) && ! strstr ( $_SERVER [ 'PHP_SELF' ], 'wp-admin/' )) { // If they were doing a search and got one result
header ( 'Location: ' . get_permalink ( $posts [ 0 ] -> ID ));
}
2003-12-11 01:22:36 +01:00
}
2004-06-01 01:35:32 +02:00
if ( $pagenow != 'wp-feed.php' && $feed != '' ) {
2004-07-06 19:58:48 +02:00
require ( dirname ( __FILE__ ) . '/wp-feed.php' );
exit ;
2004-06-01 01:35:32 +02:00
}
if ( $pagenow != 'wp-trackback.php' && $tb == 1 ) {
2004-07-06 19:58:48 +02:00
require ( dirname ( __FILE__ ) . '/wp-trackback.php' );
exit ;
2004-06-01 01:35:32 +02:00
}
2004-01-07 18:36:54 +01:00
if ( $pagenow != 'post.php' && $pagenow != 'edit.php' ) {
2004-07-06 19:58:48 +02:00
if ( get_settings ( 'gzipcompression' ) )
gzip_compression ();
2003-12-11 01:22:36 +01:00
}
2004-05-24 10:22:18 +02:00
?>