tinyib/settings.default.php

24 lines
1.5 KiB
PHP
Raw Normal View History

2010-12-04 08:45:29 +00:00
<?php
define('TINYIB_BOARD', "b"); // Unique identifier for this board using only letters and numbers
2012-12-28 08:10:16 +00:00
define('TINYIB_BOARDDESC', "TinyIB"); // Displayed at the top of every 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_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
2012-12-28 08:10:16 +00:00
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
2012-12-28 08:10:16 +00:00
define('TINYIB_MODPASS', ""); // Moderators only have access to delete posts ["" to disable]
define('TINYIB_DBMODE', "flatfile"); // Choose: flatfile / mysql / sqlite
2012-12-28 08:10:16 +00:00
// 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");
?>