Heres the first release of my forum module, its straight foward to install.
one should take into account that because the forum post table are set using a fixed width in the forums css that depending on the size of the content area of your template you will need to modify it.
feedback please, any problems installing let me know. rember this is inital release and might need tweeking but we will see.
http://webdev.dhphp.co.uk/wb/hit the forum tab and login using these.
login: forum_member
pass: forum_member
current features
100% integated forum
EDIT, the following file needs editing for latest posts to work
forgot account/logout.php
add this after include("../config.php");
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Modifyed to store the current time a user logged out of website baker.
// We use the field 'forum_last_login' to decide if theres new posts in the forum
//
//
// Update the users table with current ip and timestamp
$get_ts = strtotime(date("d.m.Y G:i:s"));
$query = "UPDATE ".TABLE_PREFIX."users SET forum_last_login = '$get_ts' WHERE user_id = '".$_SESSION['USER_ID']."'";
$database->query($query);
//
// should logging out from website baker remove all current posts,
//
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
thanks
kev