tags:

views:

313

answers:

5

I know there are minimalist forums out there like punBB - but has anyone ever run into a super tiny forum/discussion system that was barely more than posting comments? Are there any microscopic forums hidden on google code or github?

I found a PHP version of ruby's Beast written in CodeIgniter - but it was still pretty large.

A: 

There is a forum built as a Joomla plugin called SimplestForum. It's pretty tiny.

nickf
Needs Joomla, which is pretty heavy. =\
Alix Axel
+4  A: 

I'm thinking Vanilla, not sure how much is too big or too small for you.

Alix Axel
+1  A: 

I wrote a small mini-forum system before that was basically just a categorized guestbook (= it supports multiple threads, but no subforums, user setup or whatever). I think it consisted of two php files and two text files as the database. (found the files) It actually stores the data in a simple mysql database, has two php files, one setting file (for the mysql connection) and a style sheet :P If you are interested I could make that public.

But it's really not hard to do it yourself, even if you add a user database or other things to it.

poke
+3  A: 

Here's 1kb forum

http://www.nerdparadise.com/blogs/blake/6034/

Ozgur
is there a way to add search to that?
cannyboy
+1  A: 
<form action="" method="POST">Name:<input name="a">Message:<textarea name="b"></textarea><input type="submit"></form><?php if (count($_POST) != 0) { $fp = fopen(str_replace('/','',$_SERVER['REQUEST_URI']),"a"); $c = '<b>'.strip_tags($_POST['a']).': </b>'.strip_tags($_POST['b']).'<hr>'; fwrite($fp,$c); echo '<META HTTP-...EQUIV=Refresh CONTENT=0>'; } ?>
Xhin
hehe, good one. Though you should be using `nl2br()` and `htmlspecialchars()` to filter input. `strip_tags()` isn't safe enough.
Xeoncross