mirror of
https://code.rocket9labs.com/tslocum/tinyib.git
synced 2025-02-22 03:22:23 +01:00
27 lines
1.7 KiB
PHP
27 lines
1.7 KiB
PHP
<?php
|
|
define('TINYIB_BOARD', "b"); // Unique identifier for this board using only letters and numbers
|
|
define('TINYIB_BOARDDESC', "TinyIB"); // Displayed at the top of every page
|
|
define('TINYIB_THREADSPERPAGE', 10); // Amount of threads shown per index page
|
|
define('TINYIB_MAXTHREADS', 100); // Oldest threads are discarded over this limit [0 to disable]
|
|
define('TINYIB_TRUNCATE', 15); // Messages are truncated to this many lines on board index pages [0 to disable]
|
|
define('TINYIB_PREVIEWREPLIES', 3); // Amount of replies previewed on index pages
|
|
define('TINYIB_MAXREPLIES', 0); // Maximum replies before a thread stops bumping [0 to disable]
|
|
define('TINYIB_MAXKB', 2048); // Maximum file size in kilobytes [0 to disable]
|
|
define('TINYIB_MAXKBDESC', "2 MB"); // Human-readable representation of the maximum file size
|
|
define('TINYIB_MAXW', 250); // Maximum image width
|
|
define('TINYIB_MAXH', 250); // Maximum image height - Images exceeding these sizes will be thumbnailed
|
|
define('TINYIB_DELAY', 30); // Delay between posts to help control flooding [0 to disable]
|
|
define('TINYIB_LOGO', ""); // Logo HTML
|
|
define('TINYIB_TRIPSEED', ""); // Enter some random text - Used when generating secure tripcodes - Must not change once set
|
|
define('TINYIB_ADMINPASS', ""); // Text entered at the manage prompt to gain administrator access
|
|
define('TINYIB_MODPASS', ""); // Moderators only have access to delete posts ["" to disable]
|
|
define('TINYIB_DBMODE', "flatfile"); // Choose: flatfile / mysql / sqlite
|
|
|
|
// Note: The following only apply when TINYIB_DBMODE is set to mysql
|
|
define('TINYIB_DBHOST', "localhost");
|
|
define('TINYIB_DBUSERNAME', "");
|
|
define('TINYIB_DBPASSWORD', "");
|
|
define('TINYIB_DBNAME', "");
|
|
define('TINYIB_DBPOSTS', TINYIB_BOARD . "_posts");
|
|
define('TINYIB_DBBANS', "bans");
|
|
?>
|