I am also having this problem. Odder than the problem itself is that the source for b2.php as viewed through IE gives me nothing but…
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN”>
<HTML><HEAD>
<META http-equiv=Content-Type content=”text/html; charset=windows-1252″></HEAD>
<BODY></BODY></HTML>
…but when I view the same file on the server using WS_FTP I see this :
<?php /* Don’t remove this line, it calls the b2 function files ! */ $blog=1; include (“blog.header.php”); ?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
“https://www.w3.org/TR/xhtml/DTD/xhtml-transitional.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml”>
<head>
<title><?php echo $blogname ?></title>
<!– Change charset if needed(?) But please do not remove this metatag –>
<meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″ />
<meta http-equiv=”reply-to” content=”[email protected]” />
<meta http-equiv=”imagetoolbar” content=”no” />
<meta content=”TRUE” name=”MSSmartTagsPreventParsing” />
<link rel=”alternate” type=”text/xml” title=”RDF” href=”<?php bloginfo(‘rdf_url’); ?>” />
<link rel=”alternate” type=”text/xml” title=”RSS” href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<?php comments_popup_script() ?>
</head>
<body>
<img src=”CUBACRD.JPG” width=”104″ height=”137″ border=”0″>
<!– // b2 loop start –>
<?php foreach ($posts as $post) { start_b2(); ?>
<?php the_date(“d.m.y”,”<h1>”,”</h1>”); ?>
<?php permalink_anchor(); ?>
<?php the_title(); ?> (category: <?php the_category() ?>)
<?php the_content(); ?><?php link_pages(“
Pages: “,”
“,”number”) ?>
posted by <?php the_author() ?> @ “><?php the_time() ?>
<?php comments_popup_link(“comments ?”, “1 comment”, “% comments”) ?>
<?php include (“b2comments.php”); ?>
<!– // this is just the end of the motor – don’t touch that line either ?? –>
<?php } ?>
<div align=”right”><cite>Powered by WordPress</cite>
login
register</div>
<?php
if ($debug==”1″) {
echo “$querycount queries – “.number_format(timer_stop(),3).” seconds”;
}
?>
</body>
</html>