<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress Support Forums Tag: bbpress-usage</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: bbpress-usage</description>
<language>en</language>
<pubDate>Thu, 08 Jan 2009 23:12:46 +0000</pubDate>

<item>
<title>wmarcy on "Site using bbpress: purposegames.com"</title>
<link>http://bbpress.org/forums/topic/site-using-bbpress-purposegamescom#post-7159</link>
<pubDate>Tue, 01 May 2007 20:28:07 +0000</pubDate>
<dc:creator>wmarcy</dc:creator>
<guid isPermaLink="false">7159@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Any chance you could show us the code for your admin stuff?
&#60;/p&#62;</description>
</item>
<item>
<title>andersson on "Site using bbpress: purposegames.com"</title>
<link>http://bbpress.org/forums/topic/site-using-bbpress-purposegamescom#post-7143</link>
<pubDate>Tue, 01 May 2007 06:28:47 +0000</pubDate>
<dc:creator>andersson</dc:creator>
<guid isPermaLink="false">7143@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for the praise and also for the tip on the middle column. Haven't really thought of it before but you're probably right about that one.&#60;/p&#62;
&#60;p&#62;Regarding the /profiles/x it is really a simple mod. You could do it in a number of ways really, where I chose the following:&#60;/p&#62;
&#60;p&#62;Add a row in &#60;strong&#62;.htaccess&#60;/strong&#62; steering the call to the logic:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;RewriteRule ^profiles/?$ mods/profiles-by-letter.php?id=  [QSA,L]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Personally I put the logic of all mods in separate files in a mod folder and the presentation in another to keep it clean. &#60;/p&#62;
&#60;p&#62;The rewrite rule of .htaccess makes &#34;x&#34; a GET-parameter to the logic, it's then very easy to select all members starting with letter given by &#34;x&#34; like so:  &#60;/p&#62;
&#60;p&#62;&#60;code&#62;SELECT * FROM bb_users WHERE user_login LIKE &#38;#39;$first_letter&#38;#39; ORDER BY user_login LIMIT $limit&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;That's it. The logic part then calls the presentation which can use the result in an array or whatever format you choose for the result.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Site using bbpress: purposegames.com"</title>
<link>http://bbpress.org/forums/topic/site-using-bbpress-purposegamescom#post-7140</link>
<pubDate>Mon, 30 Apr 2007 22:47:24 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7140@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You've got a really nice eye for the design of the site. It's rare to see something so nicely designed and functional. :)&#60;/p&#62;
&#60;p&#62;The main column of games could be a bit more highlighted, though; with the strong coloured backgrounds the left colum distracts a lot. Worth it for the login form, but in my opinion not for stats.&#60;/p&#62;
&#60;p&#62;How did you get the /profiles/X thing to work? Haven't tried it myself, but it would be interesting to know how much modification it took to have bb accept that - if any?
&#60;/p&#62;</description>
</item>
<item>
<title>andersson on "Site using bbpress: purposegames.com"</title>
<link>http://bbpress.org/forums/topic/site-using-bbpress-purposegamescom#post-7134</link>
<pubDate>Mon, 30 Apr 2007 16:44:37 +0000</pubDate>
<dc:creator>andersson</dc:creator>
<guid isPermaLink="false">7134@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;PurposeGames is one of my sites. It's basically a site for anyone that wants to learn something new in the most efficient way possible; by creating a game around that very subject. It allows for anyone to easily create games and play/rate games by other members. I've actionscripted a game engine and a game creation module to allow for anyone to create games via their own pictures and drag and drop.&#60;/p&#62;
&#60;p&#62;I use bbpress for the forum section, and actually liked the user handling so much that I kept the authentication engine for all of the site. I've extended it in the following manner:&#60;/p&#62;
&#60;p&#62; - Elaborating on the bozo concept to exclude games created by a bozo, ratings doesn't count for bozo's and comments to games by bozos gets treated like forum entries by bozos.&#60;/p&#62;
&#60;p&#62; - Added a vast number of statistics to the dashboard to see what member's are doing, creating, rating, commenting, forum entries, top lists etc.&#60;/p&#62;
&#60;p&#62; - Extending profile pages to show member's games, comments to the games created by member etc.&#60;/p&#62;
&#60;p&#62; - Keeping the base of the style of the forum, extending it to fit the way I like my site to look.&#60;/p&#62;
&#60;p&#62;Concepts I like most about bbpress include the sanitize methods (very fast, perfectly implemented in my opinion), the user object; extending it is endless and very easy with the meta-concept, the tags concept, and the bozo concept and of course the table-free layout. The Akismet utilization is very nice also.&#60;/p&#62;
&#60;p&#62;Concepts that I've excluded or re-written: Db-connection open/close (not optimized for my type of site), the plugin concept (my extensions are therefore &#34;include&#34;-based i.e. I'm not utilizing the various hooks available). I have not cluttered the code of any standard files with my code, other than adding an include statement where needed. I also had to re-route the &#34;include header&#34;-call of the admin panel to be able to add new parent sections to keep child sections. No biggie really but quite strange. &#60;/p&#62;
&#60;p&#62;I rate bbpress as 4 out of 5 as code architecture goes being able to extend it and to use it as authentication foundation. Near superb. As forums goes, it falls into the category of &#34;less is more, but not enough&#34; ;)&#60;/p&#62;
&#60;p&#62;Check my way of using bbpress at &#60;a href=&#34;http://www.purposegames.com&#34; rel=&#34;nofollow&#34;&#62;www.purposegames.com&#60;/a&#62;&#60;br /&#62;
Feel free to comment on what you like and don't like. Thanks.&#60;/p&#62;
&#60;p&#62;David Andersson&#60;br /&#62;
Creator of purposegames.com
&#60;/p&#62;</description>
</item>

</channel>
</rss>
