I just found this simple fix on how to use BBCLONE with WordPress
First go to http://www.bbclone.de and download the latest version on the software. Install into your root directory. ( per bbclone install instructions)
Go to your themes folder and on the page.php and the single.php find:
<?php get_header(); ?>
and replace with
<?php
define(“_BBC_PAGE_NAME”, the_title(”,”,FALSE));
define(“_BBCLONE_DIR”, “bbclone/”);
define(“COUNTER”, _BBCLONE_DIR.”mark_page.php”);
if (is_readable(COUNTER)) include_once(COUNTER);
?>
<?php get_header(); ?>
you should then be good to go!!