Blood Bowl Web League Manager
Moderator: TFF Mods
- Gremdel
- Rookie
- Posts: 51
- Joined: Wed Nov 13, 2002 6:16 pm
- Location: Spokane, WA
Blood Bowl Web League Manager
I've checked out the nuffle project over at sourceforge. I downloaded it, installed php, mysql, PEAR and goofed around with it until I got it up and running. Pretty sweet. However, it wasn't as pretty as the obbl and for the life of me I couldn't figure out how to start games. So, checking out the mailing list I see I only have the beta and the project has moved on to using Python. However, I can't figure out how to get those files. Can anyone help?
Reason: ''
- Ziggi Abschuss
- Emerging Star
- Posts: 380
- Joined: Wed Jul 02, 2003 6:26 am
- Location: Helsinki, Finland
-
- Emerging Star
- Posts: 390
- Joined: Fri Dec 20, 2002 8:57 pm
- Location: Boston, Mass.
- Contact:
The "Files" section only has releases which are packaged and ready to go.
If you go to the CVS repository, you can get the latest updates which have not yet been packaged into a file for download.
Be ye warned, diving into someone's CVS repository and trying to run the latest, untested, unreleased version isn't quite for the feint of heart.
If you go to the CVS repository, you can get the latest updates which have not yet been packaged into a file for download.
Be ye warned, diving into someone's CVS repository and trying to run the latest, untested, unreleased version isn't quite for the feint of heart.
Reason: ''
- Eatmoremeat
- Experienced
- Posts: 109
- Joined: Mon Mar 01, 2004 4:30 pm
- Location: Heidelberg, Germany
- Contact:
As you said, they are currently working on a newer version of BBWM on a different technical basis. What I can say from my experience is that the bundled beta with some updated files from the cvs repository applied still works fine on our server. We're running it since 2003 with almost no big issues to solve so far (of course minor bugs, but we can live with that). Great tool.
Reason: ''
[size=84][url=http://bblh.de]Blood Bowl League Heidelberg (BBLH)[/url][/size]
-
- Rookie
- Posts: 16
- Joined: Thu Dec 08, 2005 6:32 pm
I'm trying to understand how to use the beta nuffle to move from our league handmade html page to nuffle/php but I discovered that all the stats and info about the league in nuffle cannot be divided for seasons so i cannot have the single stats for the current season but only the complete stats of each player. It's that true or i'm doing wrong somewhere? there is another similar tool to manage real life league on a website or no?
Reason: ''
- Eatmoremeat
- Experienced
- Posts: 109
- Joined: Mon Mar 01, 2004 4:30 pm
- Location: Heidelberg, Germany
- Contact:
Which screen are you talking about? For example, the 'Home'-screen has a 'Leaders'- and 'Team Leaders'-plugin on the right side. If you want these two plugins to display the stats of the current season only, do the following:koji_nanami wrote:... but I discovered that all the stats and info about the league in nuffle cannot be divided for seasons so i cannot have the single stats for the current season but only the complete stats of each player.
Open the file index.php and change the line
Code: Select all
<?php print cache_xhtml_plugin( 'sidebar/leaders.php', 'players_by_league'); ?>
Code: Select all
<?php print cache_xhtml_plugin( 'sidebar/leaders.php', 'players_by_season'); ?>
Code: Select all
<?php print cache_xhtml_plugin( 'sidebar/team_leaders.php', 'players_by_league'); ?>
Code: Select all
<?php print cache_xhtml_plugin( 'sidebar/team_leaders.php', 'players_by_season'); ?>
Reason: ''
[size=84][url=http://bblh.de]Blood Bowl League Heidelberg (BBLH)[/url][/size]