-
Notifications
You must be signed in to change notification settings - Fork 1
InstallationGuide
THIS LINE WAS LEFT BLANK INTENTIONALLY
To run kusaba, you should have a webserver with at least the following:
-
An apache or apache2 installation
-
mod_php version 4 or better, with GD and MBStrings support
-
A mysql server with the MyISAM engine
- Download the most recent kusaba release from www.kusaba.org
- Extract it to a directory that your apache installation has access to
- Make sure the permissions for everything are readable and writable by your web server
- Edit config.php
To enable a feature, change the value to true:
define('TC_INSTANTREDIRECT', true);
To disable a feature, change the value to false:
define('TC_INSTANTREDIRECT', false);
To change the text value of a configuration, edit the text in the single quotes:
define('TC_NAME', 'kusaba');
Becomes:
define('TC_NAME', 'Mychan');
Warning: Do not insert single quotes in the value yourself, or else you will cause problems. To overcome this, you use what is called escaping, which is the process of adding a backslash before the single quote, to show it is part of the string:
define('TC_NAME', 'Jason\'s chan');
The postbox is where you mix dynamic values with your own text. The text from what you enter is then parsed and will be displayed under the postbox on each board page and thread page:
`define('TC_POSTBOX', '
* Supported file types are: <!tc_filetypes />
* Maximum file size allowed is <!tc_maximagekb /> KB.
* Images greater than <!tc_maxthumbwidth />x<!tc_maxthumbheight /> pixels will be thumbnailed.
* Currently <!tc_uniqueposts /> unique user posts.
');`
Will become (if you had my settings):`