found on an other forum that phpforflash.com released flash forum source files:
boardmx.zip
boardmxharmony.zip
Preciate it. I’ve been looking for some source to play with.
wow thanx!
For those wondering, you just have to configure the db.php and common.php files, set up your database w/ the provided file and then manually create at least one catagory and one forum to get it to work.
**example **
That’s a very cool feature but I don’t know if I would be able to get anywhere when attemtping to customise such a thing lol. Any chance somebody could give me a general idea of how hard it is to customise those forums for say changing the buttons and colour scheme (at the least) ?
Thanks,
JK.
nm - I downloaded it and it isn’t too hard to customise at all. It’s surprisingly easy actually but I daren’t fiddle too much until I have it running :).
Hmmm… now I have to decide whether this or vB or phpBB2 is the best choice for some forums I intend to set up (have no previous experience with vB).
hmm… Is there any chance you could explain to me how to create the categories and forums awligon because I’ve got no idea where to look
[edit: I may have not been clear enough - I mean that I have run the .sql using phpmyadmin and the tables were created accordingly and I can load up the forums but there are no categories and no forum(s) and I don’t know where/how to create them.]
go to your phpMyAdmin, select the table, and insert…if you have phpMyAdmin…
if not, just write a very simple php script with queries like
<?
//create demo forum
$query = "INSERT INTO forumCatagories(catagoryID, title, displayOrder) VALUES (1, 'General Section', 1)";
$result = @mysql_query($query);
if (!$result) {
// Inform user of error
print "# Error inserting demo Catagory<br>
";
print mysql_error();
} else {
// Inform user of success
print "# demo Catagory created<br>
";
}
$query = "INSERT INTO forumForums (forumID, catagoryID, title, description, displayOrder, threadCount, lastPost, postNewLevel, postReplyLevel, lastUserID) VALUES (1, 1, 'General Chat', 'Talk about everything and anything!', 1, 0, 0, 0, 0,NULL)";
$result = @mysql_query($query);
if (!$result) {
// Inform user of error
print "# Error inserting demo forum<br>
";
print mysql_error();
} else {
// Inform user of success
print "# demo forum created<br>
";
}
?>
(change ID’s, titles and description and run as often as needed, check the values for postNew&ReplyLevel if you can’t post and lower them, haven’t installed/tested this yet, so…)
And expect some heavy add-ons (avatars, including user-selected, private messages, emoticons etc, all exist, just need to be ported to the new version…) to come your way soon, as we did for the previous version.
Check the “Coffee Lounge” / Community Project and related threads for updates… http://www.phpforflash/board/
All we’re waiting for is Steve to set up the project on sourceforge…
Well I do have phpmyadmin installed and I can use the basics of it so I just need to know what to insert. Right now I’m just taking a break from doing some work outside but if you don’t manage to respond before I get back, I will toy around following the code you provided for a php document :).
Thanks eyezberg,
JK.
Ah. Not too tough to figure out actually :). I have a category and a forum working now. Thanks eyezberg. However, how do I change the title of a category because it won’t let me re-create it with a different title but same id# and display order?
Thanks again,
JK.
phpmyadmin
Okidoke. I got myself a vBulletin license yesterday so I think I will be going with that in the end :). But the Flash/PHP bb is very impressive - just a little too high maintenance and I always wanted to try out vB.
Thanks,
JK.