Posts: 59
Joined: 22 June 2007
Location: Rochdale, England
Sunday, Sep 27, 2009 16:53
Hi. If I were you I'd take a look at NovaBoard. It was created by the original developer of babbleboard, and is still being actively developed under new management (unlike babbleboard which is basically dead).
Posts: 59
Joined: 22 June 2007
Location: Rochdale, England
Wednesday, Jul 23, 2008 11:32
So you want users to be able to log in on the forum, and then also be logged in on your site?
If so, you just need to change the cookie paths. You can do this by opening up includes/pages/login.php, and find:
Posts: 59
Joined: 22 June 2007
Location: Rochdale, England
Saturday, Feb 16, 2008 10:52
Probably because your server doesn't have the latest version of the GD library installed. To check this, create a new file anywhere on your server called phpinfo.php and paste the following inside:
PHP CODE
<?php phpinfo(); ?>
Then browse to this file from your web browser, and see whether GD support is enabled.
Posts: 59
Joined: 22 June 2007
Location: Rochdale, England
Sunday, Jan 13, 2008 22:32
Unfortunately I've lost the template file for this, and don't really feel like re-creating it, sorry.
Attached is the updated version though, so if anyone wants to write the template file for it, feel free.
Posts: 59
Joined: 22 June 2007
Location: Rochdale, England
Thursday, Oct 25, 2007 17:06
And here comes v0.2
This version features 10 new functions mostly based around the user. It also includes changes to some functions such as renaming and altering of some functions.
All changes have been recorded in the included changelog.txt.
So this version is again mostly for testing and feedback purposes. It now also as a much easier to follow install guide, and also the example area is layed out neater.
With more functions means more examples, so make sure you take a look at them if your interested in using this.
So anyway, download and test, and report back any bugs etc please
Posts: 59
Joined: 22 June 2007
Location: Rochdale, England
Sunday, Oct 21, 2007 22:17
So here we go then, a bit later than Thursday/Friday I admit but I tried to include a few examples and what not with it.
This version is basically just for testing and for feedback etc. However it does have enough functions for it to be usable on your site.
Things like loggedin, user info, new pms, list pms, newest member, member info, etc have all been included.
So go and give it a test and report back any bugs and stuff here.
There are a few functions not complete yet, such as new_pms, so they don't need to be mentioned.
To install, just download the .zip file, and read the install.html file located in the documentation folder.
Posts: 59
Joined: 22 June 2007
Location: Rochdale, England
Thursday, Oct 18, 2007 16:30
I've already made a function that can show all topics or from certain forums., but you might as well post yours to see if there's anything I can add to mine
Posts: 59
Joined: 22 June 2007
Location: Rochdale, England
Thursday, Oct 18, 2007 11:37
Yep thats the general idea. Rather than someone who has limited knowledge of php having to write out large mysql queries to get info, its now as simple as calling a function
Posts: 59
Joined: 22 June 2007
Location: Rochdale, England
Wednesday, Oct 17, 2007 23:17
Rob
Does this include something simple such as putting the little nav bar (logged in, yes, no, my controls, new messages etc) on a mainsite rather than just on the forums?
It was something that I was going to look at tomorrow for my own use, but if it's something which your thing will deal with, i'll leave it and wait to see what you've come up with.
If you want you can easily recreate the nav bar by using the functions username, logged_in, new_pms, etc.
So a simple nav bar could be:
RAW CODE
require_once ('../bbsdk_class.php');
$bbsdk = new bbSDK();
echo '<div class="nav-bar">';
if ($bbsdk->user_is_loggedin())
{
echo 'Logged in as: .'$bbsdk->username();
echo ' | <a href="....?page=mycontrols">My Controls</a>';
if ($bbsdk->get_new_pms()!='0')
{
echo ' | '.$bbsdk->get_new_pms().' New Messages';
}
}
else
{
echo 'Welcome <i>Guest</li> | <a href="...?page=login">Login</a> | <a href="...?page=register">Register</a>';
}
Posts: 59
Joined: 22 June 2007
Location: Rochdale, England
Wednesday, Sep 26, 2007 19:46
Just finished creating this myself, its quite simple, but does the job. Basically you upload a file to your site, enter your site url into a file (which could be located here at BB) and it creates an image.
Heres the first file (which would be good if hosted here on BB )
RAW CODE
//////////////////////////////////
// BabbleBoard forum stats by Jonny //
// http://www.jaanboy.com //
//////////////////////////////////
// To show posts enter {posts} //
// To show topics enter {topics} //
// To show members enter {members} //
//////////////////////////////////
$query2 = "select ID from {$db_prefix}posts" ;
$result2 = mysql_query($query2) or die("online.php - Error in query: $query2") ;
$posts=number_format(mysql_num_rows($result2));
$query2 = "select DISTINCT TOPIC_ID from {$db_prefix}posts" ;
$result2 = mysql_query($query2) or die("online.php - Error in query: $query2") ;
$topics=number_format(mysql_num_rows($result2));
$query2 = "select ID from {$db_prefix}members" ;
$result2 = mysql_query($query2) or die("online.php - Error in query: $query2") ;
$members=number_format(mysql_num_rows($result2));