Garvin
First thing, does Serendipity 0.8.4 work with PHP5? I have gotten it tto work standalone so I guess the answer is yes.
Now my problem is as follows:
1) I have a directory structure as follows:
* root
* newsforum (aka serendipity)
2) Within newsforum I have both the wrapper.php and content.php files.
3) In wrapper I have:
<?php
// Let serendipity generate our content:
ob_start();
require 'index.php';
$blog_data = ob_get_contents();
ob_end_clean();
require 'content.php';
?>
4) Inside my content.php I have: <?php echo $blog_data ?>
5) I have serendipity's Index File set to wrapper.php
6) Here is where the difference to the other come in:
When I link to
http://localhost/japarker/newsforum/wrapper.php I get a blank screen. Absolutely nothing

Even when selecting view source the source page is empty.
Any ideas? I am running on WindowsXP, Apache and PHP 5.0.3
Thanks a million!