Opinions sought: Is it better to do roll-your-own or ready-built forum software? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T18:53:28Z http://stackoverflow.com/feeds/question/374203 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software 6 Opinions sought: Is it better to do roll-your-own or ready-built forum software? paxdiablo 2008-12-17T10:45:53Z 2009-02-19T23:14:27Z <p>As part of a wide ranging job for a cystic fibrosis support organization, they'd also like a web site set up and I've decided on Apache running on Linux (due to its security and low cost mostly). Other than (fairly) static content, they also want a forum where people can discuss issues with the condition - it'll be attached to a hospital chain so there'll be plenty of medical staff there who know little about the web.</p> <p>I can handle all the specific coding and Apache setup since I've done it before but I'm interested in people's opinions as to whether I should roll my own forum software or get a hold of some ready-built stuff. I've not had <strong>any</strong> experience with forum software but I could generate my own (initially buggy, I'm sure) in a month or so.</p> <p>It'll require registration and login to leave comments (but guest access just to read) and I'd like it to be 'pretty' (excuse me while I remember damning customers for providing similarly vague requirements specs :-) but not necessarily infinitely-configurable with skins/themes/etc.</p> <p>If anyone has some compelling reasons (and experience with specific products that can provide what I need), I'd be interested in hearing about them. Alternatively, does anyone have any 'gotchas' they experienced while coding their own forum software?</p> http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software/374208#374208 1 Answer by Keltia for Opinions sought: Is it better to do roll-your-own or ready-built forum software? Keltia 2008-12-17T10:49:10Z 2008-12-17T10:49:10Z <p>My answer would be: don't reinvent the wheel, there are plenty of fora software out there. My preference would go for <a href="http://rforum.andreas-s.net/" rel="nofollow">RForum</a> if you need only that.</p> http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software/374212#374212 11 Answer by Stewart Johnson for Opinions sought: Is it better to do roll-your-own or ready-built forum software? Stewart Johnson 2008-12-17T10:50:15Z 2008-12-17T10:56:08Z <p><strong>Advantages</strong> to rolling your own:</p> <ul> <li>a non-standard custom-built system means you'll be less prone to "standard" attacks (e.g.: a vulnerability in PunBB) since bad guys tend to bother with exploit-hunting only on widely-deployed systems (more return on their investment)</li> <li>absolute control over how your system works and looks</li> <li>you'll learn a lot</li> </ul> <p><strong>Disadvantages:</strong></p> <ul> <li>you'll repeat mistakes other people have already solved</li> <li>it'll take you longer to get up and running</li> <li>long-term it'll be more maintenance (since you have to fix bugs &amp; add features yourself).</li> <li>you can't "leverage the community" -- if you choose an off-the-shelf forum that has a plugin system then there's a whole bunch of community add-ons that won't be available for your custom forum software.</li> </ul> <p>There's <a href="http://en.wikipedia.org/wiki/Internet_forum_software" rel="nofollow">a GIANT list of forum software on wikipedia</a> -- there's most likely something in there that will suit your needs that you can get up and running quickly.</p> http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software/374213#374213 1 Answer by Paulius Maruška for Opinions sought: Is it better to do roll-your-own or ready-built forum software? Paulius Maruška 2008-12-17T10:51:42Z 2008-12-17T10:51:42Z <p>I'd say, don't waste your time. <a href="http://www.phpbb.com/" rel="nofollow">phpBB 3</a> is pretty stable, usable and feature-rich forum. We use it at work (for our internal discussions), and I really don't have anything bad to say about it.</p> http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software/374221#374221 2 Answer by Vilx- for Opinions sought: Is it better to do roll-your-own or ready-built forum software? Vilx- 2008-12-17T10:55:25Z 2008-12-17T10:55:25Z <p>Forum softwares tend to have rather complex minimum requirements. A few things you are very likely to need do matter what you do:</p> <ul> <li>Forum/thread/post hierarchy;</li> <li>User system;</li> <li>Security system (eg user/admin classes and all kinds of restrictions for users);</li> <li>Gathering statistics;</li> <li>BBCodes or some other minimized markup language (NEVER allow users to do full HTML);</li> <li>File uploads and avatars;</li> <li>Bans and other punishments;</li> <li>CAPTCHAs;</li> <li>etc.</li> </ul> <p>Ready made forum systems provide this out-of-the-box and lots more. Setup is mostly easy too. Why do it all over again yourself?</p> http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software/374223#374223 4 Answer by Timo Geusch for Opinions sought: Is it better to do roll-your-own or ready-built forum software? Timo Geusch 2008-12-17T10:55:32Z 2008-12-17T10:55:32Z <p>IMHO the old "don't build what you can buy" adage applies to this (well, the web 2.0 version is obviously "don't build what you can download"). Have a look around at the available forum software, pick one that covers 99% of your needs and tweak it to do the rest.</p> <p>If you still want to build your own forum software that'll probably be a cool side project but if the job is to get a forum up and running, then go and download one - don't try to mix up the desire to do cool stuff and the day job unless the day job is just to do cool stuff only.</p> http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software/374327#374327 1 Answer by Ayresome for Opinions sought: Is it better to do roll-your-own or ready-built forum software? Ayresome 2008-12-17T11:55:52Z 2008-12-17T11:55:52Z <p>I'd concur with most of the above posters that since you want something which appears fairly standard, why reinvent something that already exists? Like any development, creating forum software is probably much harder than it looks! There will be problems solved in the existing software which you haven't even considered.</p> <p>It's worth adding that if you do require any specific additional functionality, you can always build that on top of an existing solution anyway, which is especially easy if you have the source code (whether open source or commercial).</p> http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software/374344#374344 1 Answer by navitronic for Opinions sought: Is it better to do roll-your-own or ready-built forum software? navitronic 2008-12-17T12:00:53Z 2008-12-17T12:00:53Z <p>From the sounds of the website that you are building, there is the potential for the forum to be a highly useful and visible resource, it would be good to go with something that already exists, due to the quality of a lot of the products out there and the rich communities that surround them.</p> <p>I think that vBulletin, although a paid for product, would suit your needs and give you a great base to build a community on.</p> http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software/520382#520382 1 Answer by Jens Roland for Opinions sought: Is it better to do roll-your-own or ready-built forum software? Jens Roland 2009-02-06T14:05:39Z 2009-02-06T14:05:39Z <p>One of the best-kept secrets on the internets is a little gem called <a href="http://en.wikipedia.org/wiki/FUDforum" rel="nofollow">FUDforum</a>, by <a href="http://ilia.ws/" rel="nofollow">Ilia Alshanetsky</a>.</p> <blockquote> <p>And yes, it's the same Ilia who wrote xDebug's original profiler code, improved the caching in MMcache, fixed several security bugs in libmcrypt, and who was the release manager for the PHP <em>language</em> from 4.3.3 to 4.3.6+. He is, as my friends in Boston would say, <strong>wicked smaart</strong>.</p> </blockquote> <p>Because of this, FUDforum is robust, <strong>ridiculously fast</strong> and more secure than probably any other part of your web application will ever be. It comes with a neat install script and it has all the features you'll need.</p> <p>Plus, it's not a high-profile target like phpBB or vBulletin, which means you won't have to worry about spambots constantly banging on the gates.</p> http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software/520416#520416 1 Answer by Tom for Opinions sought: Is it better to do roll-your-own or ready-built forum software? Tom 2009-02-06T14:16:10Z 2009-02-06T14:16:10Z <p><a href="http://getvanilla.com/" rel="nofollow">vanilla</a> is pretty bare bones and easy to configure, perhaps find a system which is easy to extend vs building everything yourself</p> http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software/555002#555002 2 Answer by dannysauer for Opinions sought: Is it better to do roll-your-own or ready-built forum software? dannysauer 2009-02-16T23:20:55Z 2009-02-16T23:20:55Z <p>Having written my own forum software before...</p> <p>It seems like a simple problem, but when you get into it, you find that there's a lot of little things that you'd like to do nicer, and it takes a lot of time. Mine was cool and all, and I did get paid for it, but if I was doing it over again (which has also happened), I'd use a customizable pre-made solution, and spend all my spare time doing something productive. :)</p> http://stackoverflow.com/questions/374203/opinions-sought-is-it-better-to-do-roll-your-own-or-ready-built-forum-software/567692#567692 1 Answer by Jas Panesar for Opinions sought: Is it better to do roll-your-own or ready-built forum software? Jas Panesar 2009-02-19T23:14:27Z 2009-02-19T23:14:27Z <p><strong>Ready built until you have some really unique features needed that can be tied to money it will make you.</strong></p>