Skip to content

Commit 45b2cf0

Browse files
committedDec 27, 2013
meet Blargboard
0 parents  commit 45b2cf0

File tree

977 files changed

+95233
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

977 files changed

+95233
-0
lines changed
 

‎.htaccess

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
3+
RewriteEngine on
4+
RewriteCond %{REQUEST_FILENAME} -d
5+
RewriteCond %{REQUEST_FILENAME} !board/?$
6+
RewriteRule .* - [S=2]
7+
RewriteRule ^(\w+)/(\w+)(?:-[\w-]*)?/$ ?page=$1&id=$2&%{QUERY_STRING} [NC,L]
8+
RewriteRule ^(\w+)/$ ?page=$1&%{QUERY_STRING} [NC,L]
9+
10+
11+
# 404 Error handling
12+
#ErrorDocument 404 /kuribo64/?page=404

‎README.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
Blargboard
2+
3+
Board software written in PHP. Uses MySQL for storage.
4+
5+
This is the software that powers Kuribo64 (http://kuribo64.net/). Or well, not quite.
6+
The code provided here is a cleaned up version, with all the K64-specific stuff removed.
7+
8+
It is based off ABXD, which is made by Dirbaio, Nina, GlitchMr & co, and was originally
9+
Kawa's project.
10+
11+
It uses Font Awesome. And possibly some other funny things I forgot about.
12+
13+
14+
How to install and use
15+
16+
First of all, if you don't have some PHP and MySQL knowledge, go find something easier
17+
to use, like MyBB or FluxBB. Or phpBB if you're insane.
18+
19+
Get a webserver. Upload the Blargboard codebase to it.
20+
21+
Create a MySQL database and import the provided database.sql file into it.
22+
23+
On your webserver, open config/database.php and fill it with the right info. Open
24+
config/salt.php and config/kurikey.php and edit them as instructed.
25+
26+
Browse to your freshly installed board and register.
27+
28+
First user to register gets full access. For this reason, avoid disclosing the board URL
29+
before you are done installing it.
30+
31+
32+
Board owner's tips
33+
34+
http://board.example/?page=makelr -> browse there after adding categories/forums. Regenerates
35+
the L/R tree used for subforums and such.
36+
37+
38+
Blargboard is provided as-is, with no guarantee that it'll be useful or even work. I'm not
39+
responsible if it explodes in your face. Use that thing at your own risk.
40+
41+
Oh well, it should work rather well. See Kuribo64. But uh, we never know.
42+
43+
44+
Have fun.

0 commit comments

Comments
 (0)
Please sign in to comment.