2010-11-02 06:57:33 -04:00
< ? php
2010-11-04 10:02:13 -04:00
/*
2013-01-20 05:23:46 -05:00
* Copyright ( c ) 2010 - 2013 Tinyboard Development Group
2011-05-27 13:23:47 -04:00
*
* WARNING : This is a project - wide configuration file and is overwritten when upgrading to a newer
* version of Tinyboard . Please leave this file unchanged , or it will be a lot harder for you to upgrade .
2010-11-04 10:18:23 -04:00
* If you would like to make instance - specific changes to your own setup , please use instance - config . php .
2010-11-04 10:02:13 -04:00
*
* This is the default configuration . You can copy values from here and use them in
2011-12-17 16:48:16 -05:00
* your instance - config . php
2010-11-04 10:02:13 -04:00
*
2011-02-16 03:41:34 -05:00
* You can also create per - board configuration files . Once a board is created , locate its directory and
2011-12-17 16:48:16 -05:00
* create a new file named config . php ( eg . b / config . php ) . Like instance - config . php , you can copy values
2011-02-16 03:41:34 -05:00
* from here and use them in your per - board configuration files .
*
2011-06-06 07:08:31 -04:00
* Some directives are commented out . This is either because they are optional and examples , or because
* they are " optionally configurable " , and given their default values by Tinyboard ' s code later if unset .
*
2012-04-10 12:37:12 -04:00
* More information : http :// tinyboard . org / docs / ? p = Config
2011-05-27 13:23:47 -04:00
*
2012-04-11 12:49:22 -04:00
* Tinyboard documentation : http :// tinyboard . org / docs /
*
2010-11-04 10:02:13 -04:00
*/
2012-03-20 21:00:00 -04:00
2014-03-31 04:23:34 -04:00
defined ( 'TINYBOARD' ) or exit ;
2012-03-20 21:00:00 -04:00
2011-10-03 09:48:09 -04:00
/*
* =======================
* General / misc settings
* =======================
*/
2013-08-02 20:52:58 -04:00
// Global announcement -- the very simple version.
// This used to be wrongly named $config['blotter'] (still exists as an alias).
// $config['global_message'] = 'This is an important announcement!';
$config [ 'blotter' ] = & $config [ 'global_message' ];
// Automatically check if a newer version of Tinyboard is available when an administrator logs in.
2011-05-21 01:21:45 -04:00
$config [ 'check_updates' ] = true ;
// How often to check for updates
$config [ 'check_updates_time' ] = 43200 ; // 12 hours
2013-08-02 20:52:58 -04:00
// Shows some extra information at the bottom of pages. Good for development/debugging.
2011-10-03 09:48:09 -04:00
$config [ 'debug' ] = false ;
2013-08-03 00:22:28 -04:00
// For development purposes. Displays (and "dies" on) all errors and warnings. Turn on with the above.
2011-12-17 16:48:16 -05:00
$config [ 'verbose_errors' ] = true ;
2013-09-06 22:40:35 -04:00
// EXPLAIN all SQL queries (when in debug mode).
$config [ 'debug_explain' ] = false ;
2013-08-02 20:52:58 -04:00
// Directory where temporary files will be created.
2012-03-12 11:34:45 -04:00
$config [ 'tmp' ] = sys_get_temp_dir ();
2013-08-02 20:52:58 -04:00
2012-02-24 16:47:39 -05:00
// The HTTP status code to use when redirecting. http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
// Can be either 303 "See Other" or 302 "Found". (303 is more correct but both should work.)
2013-08-02 20:52:58 -04:00
// There is really no reason for you to ever need to change this.
2012-02-24 16:47:39 -05:00
$config [ 'redirect_http' ] = 303 ;
2013-08-02 20:52:58 -04:00
// A tiny text file in the main directory indicating that the script has been ran and the board(s) have
// been generated. This keeps the script from querying the database and causing strain when not needed.
2011-10-03 09:49:35 -04:00
$config [ 'has_installed' ] = '.installed' ;
2013-08-02 20:52:58 -04:00
2011-11-18 07:39:13 -05:00
// Use syslog() for logging all error messages and unauthorized login attempts.
$config [ 'syslog' ] = false ;
2013-08-02 20:52:58 -04:00
2011-12-02 19:52:31 -05:00
// Use `host` via shell_exec() to lookup hostnames, avoiding query timeouts. May not work on your system.
// Requires safe_mode to be disabled.
$config [ 'dns_system' ] = false ;
2013-08-03 20:34:59 -04:00
// When executing most command-line tools (such as `convert` for ImageMagick image processing), add this
// to the environment path (seperated by :).
$config [ 'shell_path' ] = '/usr/local/bin' ;
2013-08-02 20:52:58 -04:00
2011-10-03 09:48:09 -04:00
/*
* ====================
* Database settings
* ====================
*/
2013-08-02 20:52:58 -04:00
// Database driver (http://www.php.net/manual/en/pdo.drivers.php)
// Only MySQL is supported by Tinyboard at the moment, sorry.
2012-03-13 11:44:33 -04:00
$config [ 'db' ][ 'type' ] = 'mysql' ;
2013-08-28 06:09:30 -04:00
// Hostname, IP address or Unix socket (prefixed with ":")
2012-03-13 11:44:33 -04:00
$config [ 'db' ][ 'server' ] = 'localhost' ;
2013-08-28 06:09:30 -04:00
// Example: Unix socket
// $config['db']['server'] = ':/tmp/mysql.sock';
2010-12-17 09:18:03 -05:00
// Login
2012-03-13 11:44:33 -04:00
$config [ 'db' ][ 'user' ] = '' ;
$config [ 'db' ][ 'password' ] = '' ;
2011-02-12 01:25:15 -05:00
// Tinyboard database
2012-03-13 11:44:33 -04:00
$config [ 'db' ][ 'database' ] = '' ;
2013-08-28 06:09:30 -04:00
// Table prefix (optional)
2013-07-31 22:14:26 -04:00
$config [ 'db' ][ 'prefix' ] = '' ;
2013-08-30 01:05:13 -04:00
// Use a persistent database connection when possible
2012-03-13 11:44:33 -04:00
$config [ 'db' ][ 'persistent' ] = false ;
2010-12-17 10:24:27 -05:00
// Anything more to add to the DSN string (eg. port=xxx;foo=bar)
2013-08-02 20:52:58 -04:00
$config [ 'db' ][ 'dsn' ] = '' ;
2013-08-30 01:05:13 -04:00
// Connection timeout duration in seconds
$config [ 'db' ][ 'timeout' ] = 30 ;
2013-08-02 20:52:58 -04:00
2011-10-07 01:51:19 -04:00
/*
* ====================
* Cache settings
* ====================
*/
2013-08-02 20:52:58 -04:00
/*
* On top of the static file caching system , you can enable the additional caching system which is
* designed to minimize SQL queries and can significantly increase speed when posting or using the
* moderator interface . APC is the recommended method of caching .
*
* http :// tinyboard . org / docs / index . php ? p = Config / Cache
*/
$config [ 'cache' ][ 'enabled' ] = false ;
// $config['cache']['enabled'] = 'xcache';
// $config['cache']['enabled'] = 'apc';
// $config['cache']['enabled'] = 'memcached';
// $config['cache']['enabled'] = 'redis';
// Timeout for cached objects such as posts and HTML.
$config [ 'cache' ][ 'timeout' ] = 60 * 60 * 48 ; // 48 hours
// Optional prefix if you're running multiple Tinyboard instances on the same machine.
2012-02-14 07:36:08 -05:00
$config [ 'cache' ][ 'prefix' ] = '' ;
2013-08-02 20:52:58 -04:00
// Memcached servers to use. Read more: http://www.php.net/manual/en/memcached.addservers.php
2012-04-11 12:49:22 -04:00
$config [ 'cache' ][ 'memcached' ] = array (
array ( 'localhost' , 11211 )
2011-04-22 10:24:15 -04:00
);
2012-12-02 21:00:58 -05:00
// Redis server to use. Location, port, password, database id.
2013-08-02 20:52:58 -04:00
// Note that Tinyboard may clear the database at times, so you may want to pick a database id just for
// Tinyboard to use.
2012-12-02 21:00:58 -05:00
$config [ 'cache' ][ 'redis' ] = array ( 'localhost' , 6379 , '' , 1 );
2013-08-02 20:52:58 -04:00
2011-10-03 09:48:09 -04:00
/*
* ====================
* Cookie settings
* ====================
*/
2013-08-02 20:52:58 -04:00
// Used for moderation login.
2012-03-13 11:44:33 -04:00
$config [ 'cookies' ][ 'mod' ] = 'mod' ;
2013-08-02 20:52:58 -04:00
2011-04-06 04:33:51 -04:00
// Used for communicating with Javascript; telling it when posts were successful.
2012-03-13 11:44:33 -04:00
$config [ 'cookies' ][ 'js' ] = 'serv' ;
2013-08-02 20:52:58 -04:00
// Cookies path. Defaults to $config['root']. If $config['root'] is a URL, you need to set this. Should
// be '/' or '/board/', depending on your installation.
2011-03-27 11:22:48 -04:00
// $config['cookies']['path'] = '/';
// Where to set the 'path' parameter to $config['cookies']['path'] when creating cookies. Recommended.
2012-03-13 11:44:33 -04:00
$config [ 'cookies' ][ 'jail' ] = true ;
2013-08-02 20:52:58 -04:00
// How long should the cookies last (in seconds). Defines how long should moderators should remain logged
// in (0 = browser session).
$config [ 'cookies' ][ 'expire' ] = 60 * 60 * 24 * 30 * 6 ; // ~6 months
// Make this something long and random for security.
2012-03-13 11:44:33 -04:00
$config [ 'cookies' ][ 'salt' ] = 'abcdefghijklmnopqrstuvwxyz09123456789!@#$%^&*()' ;
2013-08-02 20:52:58 -04:00
2013-08-17 21:53:39 -04:00
// Whether or not you can access the mod cookie in JavaScript. Most users should not need to change this.
$config [ 'cookies' ][ 'httponly' ] = true ;
2013-08-02 20:52:58 -04:00
// Used to salt secure tripcodes ("##trip") and poster IDs (if enabled).
2012-03-13 11:44:33 -04:00
$config [ 'secure_trip_salt' ] = ')(*&^%$#@!98765432190zyxwvutsrqponmlkjihgfedcba' ;
2011-10-03 09:48:09 -04:00
/*
* ====================
* Flood / spam settings
* ====================
*/
2013-08-02 20:52:58 -04:00
/*
* To further prevent spam and abuse , you can use DNS blacklists ( DNSBL ) . A DNSBL is a list of IP
* addresses published through the Internet Domain Name Service ( DNS ) either as a zone file that can be
* used by DNS server software , or as a live DNS zone that can be queried in real - time .
*
* Read more : http :// tinyboard . org / docs / ? p = Config / DNSBL
*/
// Prevents most Tor exit nodes from making posts. Recommended, as a lot of abuse comes from Tor because
// of the strong anonymity associated with it.
$config [ 'dnsbl' ][] = array ( 'tor.dnsbl.sectoor.de' , 1 );
2012-03-17 15:34:34 -04:00
// http://www.sorbs.net/using.shtml
2012-04-11 12:49:22 -04:00
// $config['dnsbl'][] = array('dnsbl.sorbs.net', array(2, 3, 4, 5, 6, 7, 8, 9));
2013-08-02 20:52:58 -04:00
2012-03-17 15:34:34 -04:00
// http://www.projecthoneypot.org/httpbl.php
2012-04-11 12:49:22 -04:00
// $config['dnsbl'][] = array('<your access key>.%.dnsbl.httpbl.org', function($ip) {
2012-03-17 15:34:34 -04:00
// $octets = explode('.', $ip);
//
// // days since last activity
2012-04-12 10:18:19 -04:00
// if ($octets[1] > 14)
2012-03-17 15:34:34 -04:00
// return false;
//
2012-03-18 04:58:21 -04:00
// // "threat score" (http://www.projecthoneypot.org/threat_info.php)
2012-04-12 10:18:19 -04:00
// if ($octets[2] < 5)
2012-03-17 15:34:34 -04:00
// return false;
//
// return true;
// }, 'dnsbl.httpbl.org'); // hide our access key
2013-08-02 20:52:58 -04:00
2011-10-03 09:48:09 -04:00
// Skip checking certain IP addresses against blacklists (for troubleshooting or whatever)
$config [ 'dnsbl_exceptions' ][] = '127.0.0.1' ;
2013-08-02 20:52:58 -04:00
2012-04-12 07:56:01 -04:00
/*
* Introduction to Tinyboard ' s spam filter :
*
* In simple terms , whenever a posting form on a page is generated ( which happens whenever a
* post is made ), Tinyboard will add a random amount of hidden , obscure fields to it to
* confuse bots and upset hackers . These fields and their respective obscure values are
* validated upon posting with a 160 - bit " hash " . That hash can only be used as many times
* as you specify ; otherwise , flooding bots could just keep reusing the same hash .
* Once a new set of inputs ( and the hash ) are generated , old hashes for the same thread
* and board are set to expire . Because you have to reload the page to get the new set
* of inputs and hash , if they expire too quickly and more than one person is viewing the
* page at a given time , Tinyboard would return false positives ( depending on how long the
* user sits on the page before posting ) . If your imageboard is quite fast / popular , set
* $config [ 'spam' ][ 'hidden_inputs_max_pass' ] and $config [ 'spam' ][ 'hidden_inputs_expire' ] to
* something higher to avoid false positives .
*
* See also : http :// tinyboard . org / docs / ? p = Your_request_looks_automated
*
*/
2013-08-02 20:52:58 -04:00
// Number of hidden fields to generate.
2012-03-13 11:44:33 -04:00
$config [ 'spam' ][ 'hidden_inputs_min' ] = 4 ;
$config [ 'spam' ][ 'hidden_inputs_max' ] = 12 ;
2013-08-02 20:52:58 -04:00
2012-04-12 07:56:01 -04:00
// How many times can a "hash" be used to post?
2012-04-15 01:15:16 -04:00
$config [ 'spam' ][ 'hidden_inputs_max_pass' ] = 12 ;
2013-08-02 20:52:58 -04:00
2012-04-12 07:56:01 -04:00
// How soon after regeneration do hashes expire (in seconds)?
2012-04-15 01:15:16 -04:00
$config [ 'spam' ][ 'hidden_inputs_expire' ] = 60 * 60 * 3 ; // three hours
2013-09-08 03:01:55 -04:00
// Whether to use Unicode characters in hidden input names and values.
$config [ 'spam' ][ 'unicode' ] = true ;
2013-08-02 20:52:58 -04:00
2011-10-03 09:48:09 -04:00
// These are fields used to confuse the bots. Make sure they aren't actually used by Tinyboard, or it won't work.
2012-04-11 12:49:22 -04:00
$config [ 'spam' ][ 'hidden_input_names' ] = array (
2011-10-03 09:48:09 -04:00
'user' ,
'username' ,
'login' ,
'search' ,
'q' ,
'url' ,
'firstname' ,
'lastname' ,
'text' ,
'message'
);
2013-08-02 20:52:58 -04:00
2011-10-03 09:48:09 -04:00
// Always update this when adding new valid fields to the post form, or EVERYTHING WILL BE DETECTED AS SPAM!
2012-04-11 12:49:22 -04:00
$config [ 'spam' ][ 'valid_inputs' ] = array (
2011-10-03 09:48:09 -04:00
'hash' ,
'board' ,
'thread' ,
'mod' ,
'name' ,
'email' ,
'subject' ,
'post' ,
'body' ,
'password' ,
'sticky' ,
'lock' ,
'raw' ,
'embed' ,
'recaptcha_challenge_field' ,
2011-10-03 11:46:39 -04:00
'recaptcha_response_field' ,
2012-03-14 03:09:23 -04:00
'spoiler' ,
2013-08-03 17:42:34 -04:00
'quick-reply' ,
2013-08-12 08:14:26 -04:00
'page' ,
'file_url' ,
2013-09-15 00:03:27 -04:00
'json_response' ,
2014-04-19 13:17:03 -04:00
'user_flag' ,
2011-10-03 09:48:09 -04:00
);
2013-08-02 20:52:58 -04:00
// Enable reCaptcha to make spam even harder. Rarely necessary.
2011-10-03 09:48:09 -04:00
$config [ 'recaptcha' ] = false ;
2013-08-02 20:52:58 -04:00
2011-10-03 09:48:09 -04:00
// Public and private key pair from https://www.google.com/recaptcha/admin/create
$config [ 'recaptcha_public' ] = '6LcXTcUSAAAAAKBxyFWIt2SO8jwx4W7wcSMRoN3f' ;
$config [ 'recaptcha_private' ] = '6LcXTcUSAAAAAOGVbVdhmEM1_SyRF4xTKe8jbzf_' ;
2013-08-02 20:52:58 -04:00
2013-09-06 09:09:18 -04:00
/*
* Custom filters detect certain posts and reject / ban accordingly . They are made up of a condition and an
* action ( for when ALL conditions are met ) . As every single post has to be put through each filter ,
* having hundreds probably isn ' t ideal as it could slow things down .
*
* By default , the custom filters array is populated with basic flood prevention conditions . This
* includes forcing users to wait at least 5 seconds between posts . To disable ( or amend ) these flood
* prevention settings , you will need to empty the $config [ 'filters' ] array first . You can do so by
* adding " $config['filters'] = array(); " to inc / instance - config . php . Basic flood prevention used to be
* controlled solely by config variables such as $config [ 'flood_time' ] and $config [ 'flood_time_ip' ], and
* it still is , as long as you leave the relevant $config [ 'filters' ] intact . These old config variables
* still exist for backwards - compatability and general convenience .
*
* Read more : http :// tinyboard . org / docs / index . php ? p = Config / Filters
*/
// Minimum time between between each post by the same IP address.
$config [ 'flood_time' ] = 10 ;
// Minimum time between between each post with the exact same content AND same IP address.
$config [ 'flood_time_ip' ] = 120 ;
// Same as above but by a different IP address. (Same content, not necessarily same IP address.)
$config [ 'flood_time_same' ] = 30 ;
// Minimum time between posts by the same IP address (all boards).
$config [ 'filters' ][] = array (
'condition' => array (
'flood-match' => array ( 'ip' ), // Only match IP address
2013-09-06 22:58:23 -04:00
'flood-time' => & $config [ 'flood_time' ]
2013-09-06 09:09:18 -04:00
),
'action' => 'reject' ,
'message' => & $config [ 'error' ][ 'flood' ]
);
// Minimum time between posts by the same IP address with the same text.
$config [ 'filters' ][] = array (
'condition' => array (
'flood-match' => array ( 'ip' , 'body' ), // Match IP address and post body
2013-09-06 22:58:23 -04:00
'flood-time' => & $config [ 'flood_time_ip' ],
'!body' => '/^$/' , // Post body is NOT empty
2013-09-06 09:09:18 -04:00
),
'action' => 'reject' ,
'message' => & $config [ 'error' ][ 'flood' ]
);
// Minimum time between posts with the same text. (Same content, but not always the same IP address.)
$config [ 'filters' ][] = array (
'condition' => array (
2013-09-08 00:59:43 -04:00
'flood-match' => array ( 'body' ), // Match only post body
2013-09-06 22:58:23 -04:00
'flood-time' => & $config [ 'flood_time_same' ]
2013-09-06 09:09:18 -04:00
),
'action' => 'reject' ,
'message' => & $config [ 'error' ][ 'flood' ]
);
// Example: Minimum time between posts with the same file hash.
// $config['filters'][] = array(
// 'condition' => array(
// 'flood-match' => array('file'), // Match file hash
// 'flood-time' => 60 * 2 // 2 minutes minimum
// ),
// 'action' => 'reject',
// 'message' => &$config['error']['flood']
// );
2013-09-08 01:07:55 -04:00
// Example: Use the "flood-count" condition to only match if the user has made at least two posts with
// the same content and IP address in the past 2 minutes.
// $config['filters'][] = array(
// 'condition' => array(
// 'flood-match' => array('ip', 'body'), // Match IP address and post body
// 'flood-time' => 60 * 2, // 2 minutes
// 'flood-count' => 2 // At least two recent posts
// ),
// '!body' => '/^$/',
// 'action' => 'reject',
// 'message' => &$config['error']['flood']
// );
// Example: Blocking an imaginary known spammer, who keeps posting a reply with the name "surgeon",
2013-09-06 09:09:18 -04:00
// ending his posts with "regards, the surgeon" or similar.
// $config['filters'][] = array(
// 'condition' => array(
// 'name' => '/^surgeon$/',
// 'body' => '/regards,\s+(the )?surgeon$/i',
// 'OP' => false
// ),
// 'action' => 'reject',
// 'message' => 'Go away, spammer.'
// );
2013-09-08 01:07:55 -04:00
// Example: Same as above, but issuing a 3-hour ban instead of just reject the post.
2013-09-06 09:09:18 -04:00
// $config['filters'][] = array(
// 'condition' => array(
// 'name' => '/^surgeon$/',
// 'body' => '/regards,\s+(the )?surgeon$/i',
// 'OP' => false
// ),
// 'action' => 'ban',
// 'expires' => 60 * 60 * 3, // 3 hours
// 'reason' => 'Go away, spammer.'
// );
2013-09-08 01:07:55 -04:00
// Example: PHP 5.3+ (anonymous functions)
2013-09-06 09:09:18 -04:00
// There is also a "custom" condition, making the possibilities of this feature pretty much endless.
// This is a bad example, because there is already a "name" condition built-in.
// $config['filters'][] = array(
// 'condition' => array(
// 'body' => '/h$/i',
// 'OP' => false,
// 'custom' => function($post) {
// if($post['name'] == 'Anonymous')
// return true;
// else
// return false;
// }
// ),
// 'action' => 'reject'
// );
// Filter flood prevention conditions ("flood-match") depend on a table which contains a cache of recent
// posts across all boards. This table is automatically purged of older posts, determining the maximum
// "age" by looking at each filter. However, when determining the maximum age, Tinyboard does not look
// outside the current board. This means that if you have a special flood condition for a specific board
// (contained in a board configuration file) which has a flood-time greater than any of those in the
// global configuration, you need to set the following variable to the maximum flood-time condition value.
// $config['flood_cache'] = 60 * 60 * 24; // 24 hours
2011-10-03 09:48:09 -04:00
/*
* ====================
* Post settings
* ====================
*/
2011-09-15 06:32:49 -04:00
// Do you need a body for your reply posts?
2011-12-17 16:48:16 -05:00
$config [ 'force_body' ] = false ;
2011-09-15 06:32:49 -04:00
// Do you need a body for new threads?
2011-12-17 16:48:16 -05:00
$config [ 'force_body_op' ] = true ;
// Require an image for threads?
$config [ 'force_image_op' ] = true ;
2013-08-02 20:52:58 -04:00
// Strip superfluous new lines at the end of a post.
$config [ 'strip_superfluous_returns' ] = true ;
// Strip combining characters from Unicode strings (eg. "Zalgo").
2013-07-28 20:33:26 -04:00
$config [ 'strip_combining_chars' ] = true ;
2013-08-02 20:52:58 -04:00
// Maximum post body length.
2011-12-17 16:48:16 -05:00
$config [ 'max_body' ] = 1800 ;
2013-08-02 20:52:58 -04:00
// Maximum number of post body lines to show on the index page.
2011-12-17 16:48:16 -05:00
$config [ 'body_truncate' ] = 15 ;
2013-08-02 20:52:58 -04:00
// Maximum number of characters to show on the index page.
2011-04-17 01:28:15 -04:00
$config [ 'body_truncate_char' ] = 2500 ;
2013-08-02 20:52:58 -04:00
// Typically spambots try to post many links. Refuse a post with X links?
2011-12-17 16:48:16 -05:00
$config [ 'max_links' ] = 20 ;
2013-08-02 20:52:58 -04:00
// Maximum number of cites per post (prevents abuse, as more citations mean more database queries).
2011-12-17 16:48:16 -05:00
$config [ 'max_cites' ] = 45 ;
2013-08-02 20:52:58 -04:00
// Maximum number of cross-board links/citations per post.
2011-12-17 16:48:16 -05:00
$config [ 'max_cross' ] = $config [ 'max_cites' ];
2013-08-02 20:52:58 -04:00
2011-12-04 21:17:34 -05:00
// Track post citations (>>XX). Rebuilds posts after a cited post is deleted, removing broken links.
2013-08-02 20:52:58 -04:00
// Puts a little more load on the database.
2011-12-17 16:48:16 -05:00
$config [ 'track_cites' ] = true ;
2013-08-02 20:52:58 -04:00
// Maximum filename length (will be truncated).
2011-12-17 16:48:16 -05:00
$config [ 'max_filename_len' ] = 255 ;
2013-08-02 20:52:58 -04:00
// Maximum filename length to display (the rest can be viewed upon mouseover).
2011-10-01 08:12:31 -04:00
$config [ 'max_filename_display' ] = 30 ;
2013-08-02 20:52:58 -04:00
// How long after posting should you have to wait before being able to delete that post? (In seconds.)
2011-12-17 16:48:16 -05:00
$config [ 'delete_time' ] = 10 ;
2013-08-02 20:52:58 -04:00
// Reply limit (stops bumping thread when this is reached).
2011-12-17 16:48:16 -05:00
$config [ 'reply_limit' ] = 250 ;
2013-08-02 20:52:58 -04:00
// Image hard limit (stops allowing new image replies when this is reached if not zero).
2013-06-18 13:21:41 -04:00
$config [ 'image_hard_limit' ] = 0 ;
2013-08-02 20:52:58 -04:00
// Reply hard limit (stops allowing new replies when this is reached if not zero).
2013-06-18 13:21:41 -04:00
$config [ 'reply_hard_limit' ] = 0 ;
2013-08-02 20:52:58 -04:00
2011-12-17 16:48:16 -05:00
$config [ 'robot_enable' ] = false ;
2013-08-02 20:52:58 -04:00
// Strip repeating characters when making hashes.
2011-12-17 16:48:16 -05:00
$config [ 'robot_strip_repeating' ] = true ;
2013-08-02 20:52:58 -04:00
// Enabled mutes? Tinyboard uses ROBOT9000's original 2^x implementation where x is the number of times
// you have been muted in the past.
2011-12-17 16:48:16 -05:00
$config [ 'robot_mute' ] = true ;
2013-08-02 20:52:58 -04:00
// How long before Tinyboard forgets about a mute?
2011-12-17 16:48:16 -05:00
$config [ 'robot_mute_hour' ] = 336 ; // 2 weeks
2013-08-02 20:52:58 -04:00
// If you want to alter the algorithm a bit. Default value is 2.
$config [ 'robot_mute_multiplier' ] = 2 ; // (n^x where x is the number of previous mutes)
2013-07-27 01:33:21 -04:00
$config [ 'robot_mute_descritpion' ] = _ ( 'You have been muted for unoriginal content.' );
2013-08-02 20:52:58 -04:00
// Automatically convert things like "..." to Unicode characters ("…").
2011-12-17 16:48:16 -05:00
$config [ 'auto_unicode' ] = true ;
2013-08-02 20:52:58 -04:00
// Whether to turn URLs into functional links.
2011-12-17 16:48:16 -05:00
$config [ 'markup_urls' ] = true ;
2013-07-31 14:54:20 -04:00
2013-08-02 20:52:58 -04:00
// Optional URL prefix for links (eg. "http://anonym.to/?").
2013-07-31 03:43:01 -04:00
$config [ 'link_prefix' ] = '' ;
2013-07-31 14:54:20 -04:00
$config [ 'url_ads' ] = & $config [ 'link_prefix' ]; // leave alias
2013-08-12 08:14:26 -04:00
// Allow "uploading" images via URL as well. Users can enter the URL of the image and then Tinyboard will
// download it. Not usually recommended.
$config [ 'allow_upload_by_url' ] = false ;
2013-08-19 04:54:10 -04:00
// The timeout for the above, in seconds.
$config [ 'upload_by_url_timeout' ] = 15 ;
2013-07-31 14:54:20 -04:00
2013-08-02 20:52:58 -04:00
// A wordfilter (sometimes referred to as just a "filter" or "censor") automatically scans users’ posts
// as they are submitted and changes or censors particular words or phrases.
2011-10-03 09:48:09 -04:00
// For a normal string replacement:
2013-08-02 20:52:58 -04:00
// $config['wordfilters'][] = array('cat', 'dog');
2011-10-03 09:48:09 -04:00
// Advanced raplcement (regular expressions):
2013-08-02 20:52:58 -04:00
// $config['wordfilters'][] = array('/ca[rt]/', 'dog', true); // 'true' means it's a regular expression
// Always act as if the user had typed "noko" into the email field.
2011-12-17 16:48:16 -05:00
$config [ 'always_noko' ] = false ;
2013-08-02 20:52:58 -04:00
2013-08-03 05:21:02 -04:00
// Example: Custom tripcodes. The below example makes a tripcode of "#test123" evaluate to "!HelloWorld".
2011-10-03 09:48:09 -04:00
// $config['custom_tripcode']['#test123'] = '!HelloWorld';
2013-08-03 05:21:02 -04:00
// Example: Custom secure tripcode.
2011-10-03 09:48:09 -04:00
// $config['custom_tripcode']['##securetrip'] = '!!somethingelse';
2013-08-02 20:52:58 -04:00
// Allow users to mark their image as a "spoiler" when posting. The thumbnail will be replaced with a
// static spoiler image instead (see $config['spoiler_image']).
2011-10-03 11:46:39 -04:00
$config [ 'spoiler_images' ] = false ;
2013-08-02 20:52:58 -04:00
2011-11-23 05:24:06 -05:00
// With the following, you can disable certain superfluous fields or enable "forced anonymous".
2013-08-02 20:52:58 -04:00
2011-11-23 05:24:06 -05:00
// When true, all names will be set to $config['anonymous'].
$config [ 'field_disable_name' ] = false ;
2013-08-02 20:52:58 -04:00
// When true, there will be no email field.
2011-11-23 05:24:06 -05:00
$config [ 'field_disable_email' ] = false ;
2013-08-02 20:52:58 -04:00
// When true, there will be no subject field.
2012-08-30 06:07:23 -04:00
$config [ 'field_disable_subject' ] = false ;
2013-08-02 20:52:58 -04:00
// When true, there will be no subject field for replies.
2012-08-30 06:07:23 -04:00
$config [ 'field_disable_reply_subject' ] = false ;
2011-11-23 05:24:06 -05:00
// When true, a blank password will be used for files (not usable for deletion).
$config [ 'field_disable_password' ] = false ;
2013-08-02 20:52:58 -04:00
2013-08-08 15:30:05 -04:00
// When true, users are instead presented a selectbox for email. Contains, blank, noko and sage.
$config [ 'field_email_selectbox' ] = false ;
2014-02-23 18:06:01 -05:00
// Attach country flags to posts.
2013-08-16 07:08:01 -04:00
$config [ 'country_flags' ] = false ;
2014-02-23 18:06:01 -05:00
// Load all country flags from one file
$config [ 'country_flags_condensed' ] = true ;
$config [ 'country_flags_condensed_css' ] = 'static/flags/flags.css' ;
2014-04-19 09:09:16 -04:00
// Allow the user choose a /pol/-like user_flag that will be shown in the post. For the user flags, please be aware
2014-04-19 08:56:59 -04:00
// that you will have to disable BOTH country_flags and contry_flags_condensed optimization (at least on a board
// where they are enabled).
$config [ 'user_flag' ] = false ;
2014-04-19 09:09:16 -04:00
// List of user_flag the user can choose. Flags must be placed in the directory set by $config['uri_flags']
2014-05-03 18:05:55 -04:00
$config [ 'user_flags' ] = array ();
2014-04-19 08:56:59 -04:00
/* example :
$config [ 'user_flags' ] = array (
'nz' => 'Nazi' ,
'cm' => 'Communist' ,
'eu' => 'Europe'
);
*/
2013-09-20 22:51:23 -04:00
/*
* ====================
* Ban settings
* ====================
*/
2013-08-02 20:52:58 -04:00
// Require users to see the ban page at least once for a ban even if it has since expired.
$config [ 'require_ban_view' ] = true ;
2013-09-20 22:51:23 -04:00
// Show the post the user was banned for on the "You are banned" page.
$config [ 'ban_show_post' ] = false ;
// Optional HTML to append to "You are banned" pages. For example, you could include instructions and/or
// a link to an email address or IRC chat room to appeal the ban.
$config [ 'ban_page_extra' ] = '' ;
// Allow users to appeal bans through Tinyboard.
$config [ 'ban_appeals' ] = false ;
// Do not allow users to appeal bans that are shorter than this length (in seconds).
$config [ 'ban_appeals_min_length' ] = 60 * 60 * 6 ; // 6 hours
// How many ban appeals can be made for a single ban?
$config [ 'ban_appeals_max' ] = 1 ;
2011-10-03 09:48:09 -04:00
/*
* ====================
2012-03-20 20:57:30 -04:00
* Markup settings
* ====================
*/
// "Wiki" markup syntax ($config['wiki_markup'] in pervious versions):
2013-08-29 01:56:36 -04:00
$config [ 'markup' ][] = array ( " /'''(.+?)'''/ " , " <strong> \$ 1</strong> " );
$config [ 'markup' ][] = array ( " /''(.+?)''/ " , " <em> \$ 1</em> " );
$config [ 'markup' ][] = array ( " / \ * \ *(.+?) \ * \ */ " , " <span class= \" spoiler \" > \$ 1</span> " );
2013-08-29 07:33:19 -04:00
$config [ 'markup' ][] = array ( " /^[ | \t ]*==(.+?)==[ | \t ]* $ /m " , " <span class= \" heading \" > \$ 1</span> " );
2013-08-02 20:52:58 -04:00
// Highlight PHP code wrapped in <code> tags (PHP 5.3+)
2012-04-11 12:49:22 -04:00
// $config['markup'][] = array(
2012-03-20 21:14:14 -04:00
// '/^<code>(.+)<\/code>/ms',
2012-03-20 21:11:53 -04:00
// function($matches) {
2012-03-20 21:15:50 -04:00
// return highlight_string(html_entity_decode($matches[1]), true);
2012-03-20 21:11:53 -04:00
// }
// );
2013-08-02 20:52:58 -04:00
2013-08-29 04:59:36 -04:00
// Repair markup with HTML Tidy. This may be slower, but it solves nesting mistakes. Tinyboad, at the
// time of writing this, can not prevent out-of-order markup tags (eg. "**''test**'') without help from
// HTML Tidy.
2013-08-29 01:56:36 -04:00
$config [ 'markup_repair_tidy' ] = false ;
2013-08-29 01:28:45 -04:00
// Always regenerate markup. This isn't recommended and should only be used for debugging; by default,
// Tinyboard only parses post markup when it needs to, and keeps post-markup HTML in the database. This
// will significantly impact performance when enabled.
$config [ 'always_regenerate_markup' ] = false ;
2012-03-20 20:57:30 -04:00
/*
* ====================
2011-10-03 09:48:09 -04:00
* Image settings
* ====================
*/
2013-08-02 20:52:58 -04:00
// For resizing, maximum thumbnail dimensions.
2011-12-17 16:48:16 -05:00
$config [ 'thumb_width' ] = 255 ;
2012-03-13 11:44:33 -04:00
$config [ 'thumb_height' ] = 255 ;
2013-08-02 20:52:58 -04:00
// Maximum thumbnail dimensions for thread (OP) images.
2012-03-13 11:44:33 -04:00
$config [ 'thumb_op_width' ] = 255 ;
$config [ 'thumb_op_height' ] = 255 ;
2013-08-02 20:52:58 -04:00
// Thumbnail extension ("png" recommended). Leave this empty if you want the extension to be inherited
// from the uploaded file.
2011-04-12 14:09:37 -04:00
$config [ 'thumb_ext' ] = 'png' ;
2013-08-02 20:52:58 -04:00
// Maximum amount of animated GIF frames to resize (more frames can mean more processing power). A value
// of "1" means thumbnails will not be animated. Requires $config['thumb_ext'] to be 'gif' (or blank) and
2013-08-04 16:46:08 -04:00
// $config['thumb_method'] to be 'imagick', 'convert', or 'convert+gifsicle'. This value is not
// respected by 'convert'; will just resize all frames if this is > 1.
2012-03-10 06:56:45 -05:00
$config [ 'thumb_keep_animation_frames' ] = 1 ;
2013-08-02 20:52:58 -04:00
/*
* Thumbnailing method :
*
* 'gd' PHP GD ( default ) . Only handles the most basic image formats ( GIF , JPEG , PNG ) .
* GD is a prerequisite for Tinyboard no matter what method you choose .
*
* 'imagick' PHP ' s ImageMagick bindings . Fast and efficient , supporting many image formats .
* A few minor bugs . http :// pecl . php . net / package / imagick
*
* 'convert' The command line version of ImageMagick ( `convert` ) . Fixes most of the bugs in
* PHP Imagick . `convert` produces the best still thumbnails and is highly recommended .
*
2013-08-03 20:34:59 -04:00
* 'gm' GraphicsMagick ( `gm` ) is a fork of ImageMagick with many improvements . It is more
* efficient and gets thumbnailing done using fewer resources .
*
* 'convert+gifscale'
* OR 'gm+gifsicle' Same as above , with the exception of using `gifsicle` ( command line application )
2013-08-02 20:52:58 -04:00
* instead of `convert` for resizing GIFs . It ' s faster and resulting animated
* thumbnails have less artifacts than if resized with ImageMagick .
*/
2012-03-16 20:54:23 -04:00
$config [ 'thumb_method' ] = 'gd' ;
2013-08-02 00:08:37 -04:00
// $config['thumb_method'] = 'convert';
2013-08-02 20:52:58 -04:00
2013-08-02 23:18:25 -04:00
// Command-line options passed to ImageMagick when using `convert` for thumbnailing. Don't touch the
// placement of "%s" and "%d".
2013-08-03 21:47:24 -04:00
$config [ 'convert_args' ] = '-size %dx%d %s -thumbnail %dx%d -auto-orient +profile "*" %s' ;
2013-08-02 20:52:58 -04:00
// Strip EXIF metadata from JPEG files.
2013-07-21 15:50:45 -04:00
$config [ 'strip_exif' ] = false ;
2013-08-03 20:34:59 -04:00
// Use the command-line `exiftool` tool to strip EXIF metadata without decompressing/recompressing JPEGs.
2013-08-04 00:48:28 -04:00
// Ignored when $config['redraw_image'] is true. This is also used to adjust the Orientation tag when
2013-08-04 16:46:08 -04:00
// $config['strip_exif'] is false and $config['convert_manual_orient'] is true.
2013-08-04 00:48:28 -04:00
$config [ 'use_exiftool' ] = false ;
2013-08-03 20:34:59 -04:00
// Redraw the image to strip any excess data (commonly ZIP archives) WARNING: This might strip the
// animation of GIFs, depending on the chosen thumbnailing method. It also requires recompressing
// the image, so more processing power is required.
$config [ 'redraw_image' ] = false ;
2012-03-16 19:32:50 -04:00
2013-08-03 20:34:59 -04:00
// Automatically correct the orientation of JPEG files using -auto-orient in `convert`. This only works
// when `convert` or `gm` is selected for thumbnailing. Again, requires more processing power because
// this basically does the same thing as $config['redraw_image']. (If $config['redraw_image'] is enabled,
// this value doesn't matter as $config['redraw_image'] attempts to correct orientation too.)
$config [ 'convert_auto_orient' ] = false ;
2011-10-03 09:48:09 -04:00
2013-08-03 22:14:25 -04:00
// Is your version of ImageMagick or GraphicsMagick old? Older versions may not include the -auto-orient
// switch. This is a manual replacement for that switch. This is independent from the above switch;
// -auto-orrient is applied when thumbnailing too.
$config [ 'convert_manual_orient' ] = false ;
2013-08-02 20:52:58 -04:00
// Regular expression to check for an XSS exploit with IE 6 and 7. To disable, set to false.
// Details: https://github.com/savetheinternet/Tinyboard/issues/20
2011-10-03 09:48:09 -04:00
$config [ 'ie_mime_type_detection' ] = '/<(?:body|head|html|img|plaintext|pre|script|table|title|a href|channel|scriptlet)/i' ;
2013-08-02 20:52:58 -04:00
// Allowed image file extensions.
2011-10-05 01:48:31 -04:00
$config [ 'allowed_ext' ][] = 'jpg' ;
$config [ 'allowed_ext' ][] = 'jpeg' ;
$config [ 'allowed_ext' ][] = 'bmp' ;
$config [ 'allowed_ext' ][] = 'gif' ;
$config [ 'allowed_ext' ][] = 'png' ;
2011-10-03 09:48:09 -04:00
// $config['allowed_ext'][] = 'svg';
2013-08-02 20:52:58 -04:00
// Allowed additional file extensions (not images; downloadable files).
2011-10-05 01:45:34 -04:00
// $config['allowed_ext_files'][] = 'txt';
// $config['allowed_ext_files'][] = 'zip';
2013-08-02 20:52:58 -04:00
// An alternative function for generating image filenames, instead of the default UNIX timestamp.
// $config['filename_func'] = function($post) {
// return sprintf("%s", time() . substr(microtime(), 2, 3));
// };
// Thumbnail to use for the non-image file uploads.
2011-12-17 16:48:16 -05:00
$config [ 'file_icons' ][ 'default' ] = 'file.png' ;
$config [ 'file_icons' ][ 'zip' ] = 'zip.png' ;
2014-04-06 15:51:41 -04:00
$config [ 'file_icons' ][ 'webm' ] = 'video.png' ;
2013-08-03 05:21:02 -04:00
// Example: Custom thumbnail for certain file extension.
2013-08-02 20:52:58 -04:00
// $config['file_icons']['extension'] = 'some_file.png';
// Location of above images.
2011-12-17 16:48:16 -05:00
$config [ 'file_thumb' ] = 'static/%s' ;
2013-08-02 20:52:58 -04:00
// Location of thumbnail to use for spoiler images.
2011-12-17 16:48:16 -05:00
$config [ 'spoiler_image' ] = 'static/spoiler.png' ;
2013-08-02 20:52:58 -04:00
// Location of thumbnail to use for deleted images.
2013-08-04 18:48:32 -04:00
// $config['image_deleted'] = 'static/deleted.png';
2013-08-02 20:52:58 -04:00
// When a thumbnailed image is going to be the same (in dimension), just copy the entire file and use
// that as a thumbnail instead of resizing/redrawing.
2012-04-17 10:07:37 -04:00
$config [ 'minimum_copy_resize' ] = false ;
2013-08-02 20:52:58 -04:00
// Maximum image upload size in bytes.
$config [ 'max_filesize' ] = 10 * 1024 * 1024 ; // 10MB
// Maximum image dimensions.
2011-12-17 16:48:16 -05:00
$config [ 'max_width' ] = 10000 ;
2013-08-02 20:52:58 -04:00
$config [ 'max_height' ] = $config [ 'max_width' ];
// Reject duplicate image uploads.
2011-12-17 16:48:16 -05:00
$config [ 'image_reject_repost' ] = true ;
2013-08-02 20:52:58 -04:00
// Reject duplicate image uploads within the same thread. Doesn't change anything if
2013-08-04 16:46:08 -04:00
// $config['image_reject_repost'] is true.
2012-11-14 15:33:27 -05:00
$config [ 'image_reject_repost_in_thread' ] = false ;
2013-08-02 20:52:58 -04:00
// Display the aspect ratio of uploaded files.
2011-12-17 16:48:16 -05:00
$config [ 'show_ratio' ] = false ;
2013-08-02 20:52:58 -04:00
// Display the file's original filename.
2013-08-29 06:05:24 -04:00
$config [ 'show_filename' ] = true ;
2012-12-22 22:38:20 -05:00
2013-08-02 20:52:58 -04:00
// Display image identification links using regex.info/exif, TinEye and Google Images.
2012-12-22 22:38:20 -05:00
$config [ 'image_identification' ] = false ;
2013-08-10 17:16:30 -04:00
// Number of posts in a "View Last X Posts" page
$config [ 'noko50_count' ] = 50 ;
2013-08-11 17:53:42 -04:00
// Number of posts a thread needs before it gets a "View Last X Posts" page.
// Set to an arbitrarily large value to disable.
2013-08-10 17:16:30 -04:00
$config [ 'noko50_min' ] = 100 ;
2011-10-03 09:48:09 -04:00
/*
* ====================
* Board settings
* ====================
*/
2013-08-02 20:52:58 -04:00
// Maximum amount of threads to display per page.
2011-12-17 16:48:16 -05:00
$config [ 'threads_per_page' ] = 10 ;
2011-10-03 09:48:09 -04:00
// Maximum number of pages. Content past the last page is automatically purged.
2011-12-17 16:48:16 -05:00
$config [ 'max_pages' ] = 10 ;
2011-10-03 09:48:09 -04:00
// Replies to show per thread on the board index page.
2011-12-17 16:48:16 -05:00
$config [ 'threads_preview' ] = 5 ;
2011-10-03 09:48:09 -04:00
// Same as above, but for stickied threads.
$config [ 'threads_preview_sticky' ] = 1 ;
2013-08-02 20:52:58 -04:00
// How to display the URI of boards. Usually '/%s/' (/b/, /mu/, etc). This doesn't change the URL. Find
2013-08-04 16:46:08 -04:00
// $config['board_path'] if you wish to change the URL.
2011-10-03 09:48:09 -04:00
$config [ 'board_abbreviation' ] = '/%s/' ;
2013-08-02 20:52:58 -04:00
// The default name (ie. Anonymous).
2011-12-17 16:48:16 -05:00
$config [ 'anonymous' ] = 'Anonymous' ;
2013-08-02 20:52:58 -04:00
// Number of reports you can create at once.
2011-12-17 16:48:16 -05:00
$config [ 'report_limit' ] = 3 ;
2012-12-23 12:37:44 -05:00
2012-12-23 13:01:59 -05:00
// Attention Whoring Bar
// REMEMBER TO CHMOD attentionbar.txt PROPERLY
2012-12-23 12:37:44 -05:00
// Oh, and add jQuery in additional_javascript.
2012-12-23 13:01:59 -05:00
$config [ 'attention_bar' ] = false ;
2013-08-08 14:58:44 -04:00
2013-08-11 09:50:33 -04:00
// Allow unfiltered HTML in board subtitle. This is useful for placing icons and links.
2013-08-08 14:58:44 -04:00
$config [ 'allow_subtitle_html' ] = false ;
2011-10-03 09:48:09 -04:00
/*
* ====================
* Display settings
* ====================
*/
2013-08-02 20:52:58 -04:00
// Tinyboard has been translated into a few langauges. See inc/locale for available translations.
$config [ 'locale' ] = 'en' ; // (en, ru_RU.UTF-8, fi_FI.UTF-8, pl_PL.UTF-8)
// Timezone to use for displaying dates/tiems.
2011-10-03 09:48:09 -04:00
$config [ 'timezone' ] = 'America/Los_Angeles' ;
2013-08-02 20:52:58 -04:00
// The format string passed to strftime() for displaying dates.
2011-11-19 12:07:17 -05:00
// http://www.php.net/manual/en/function.strftime.php
2011-12-17 16:48:16 -05:00
$config [ 'post_date' ] = '%m/%d/%y (%a) %H:%M:%S' ;
2011-11-23 00:12:19 -05:00
// Same as above, but used for "you are banned' pages.
2011-12-17 16:48:16 -05:00
$config [ 'ban_date' ] = '%A %e %B, %Y' ;
2013-08-02 20:52:58 -04:00
// The names on the post buttons. (On most imageboards, these are both just "Post").
2013-07-31 06:56:57 -04:00
$config [ 'button_newtopic' ] = _ ( 'New Topic' );
$config [ 'button_reply' ] = _ ( 'New Reply' );
2013-08-02 20:52:58 -04:00
// Assign each poster in a thread a unique ID, shown by "ID: xxxxx" before the post number.
2011-10-03 09:48:09 -04:00
$config [ 'poster_ids' ] = false ;
2013-08-02 20:52:58 -04:00
// Number of characters in the poster ID (maximum is 40).
2011-10-03 09:48:09 -04:00
$config [ 'poster_id_length' ] = 5 ;
2013-08-02 20:52:58 -04:00
// Show thread subject in page title.
2013-07-16 02:48:20 -04:00
$config [ 'thread_subject_in_title' ] = false ;
2013-08-02 20:52:58 -04:00
// Additional lines added to the footer of all pages.
2013-07-31 06:56:57 -04:00
$config [ 'footer' ][] = _ ( 'All trademarks, copyrights, comments, and images on this page are owned by and are the responsibility of their respective parties.' );
2013-08-02 20:52:58 -04:00
// Characters used to generate a random password (with Javascript).
2011-10-03 09:48:09 -04:00
$config [ 'genpassword_chars' ] = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+' ;
2013-08-02 20:52:58 -04:00
// Optional banner image at the top of every page.
2011-10-03 09:48:09 -04:00
// $config['url_banner'] = '/banner.php';
2013-08-02 20:52:58 -04:00
// Banner dimensions are also optional. As the banner loads after the rest of the page, everything may be
// shifted down a few pixels when it does. Making the banner a fixed size will prevent this.
2011-10-03 09:48:09 -04:00
// $config['banner_width'] = 300;
// $config['banner_height'] = 100;
2013-08-02 20:52:58 -04:00
// Custom stylesheets available for the user to choose. See the "stylesheets/" folder for a list of
// available stylesheets (or create your own).
$config [ 'stylesheets' ][ 'Yotsuba B' ] = '' ; // Default; there is no additional/custom stylesheet for this.
2012-02-06 01:42:25 -05:00
$config [ 'stylesheets' ][ 'Yotsuba' ] = 'yotsuba.css' ;
2011-10-03 09:48:09 -04:00
// $config['stylesheets']['Futaba'] = 'futaba.css';
2013-08-02 20:52:58 -04:00
// $config['stylesheets']['Dark'] = 'dark.css';
2011-10-03 09:48:09 -04:00
// The prefix for each stylesheet URI. Defaults to $config['root']/stylesheets/
2011-12-05 08:29:47 -05:00
// $config['uri_stylesheets'] = 'http://static.example.org/stylesheets/';
2013-08-02 20:52:58 -04:00
// The default stylesheet to use.
2012-04-11 12:49:22 -04:00
$config [ 'default_stylesheet' ] = array ( 'Yotsuba B' , $config [ 'stylesheets' ][ 'Yotsuba B' ]);
2013-08-02 20:52:58 -04:00
// Make stylesheet selections board-specific.
2013-07-23 01:35:56 -04:00
$config [ 'stylesheets_board' ] = false ;
2013-08-02 20:52:58 -04:00
2013-07-23 09:38:42 -04:00
// Use Font-Awesome for displaying lock and pin icons, instead of the images in static/.
// http://fortawesome.github.io/Font-Awesome/icon/pushpin/
// http://fortawesome.github.io/Font-Awesome/icon/lock/
2013-07-29 12:27:10 -04:00
$config [ 'font_awesome' ] = true ;
2013-07-23 09:38:42 -04:00
$config [ 'font_awesome_css' ] = 'stylesheets/font-awesome/css/font-awesome.min.css' ;
2013-08-02 20:52:58 -04:00
/*
* For lack of a better name , “boardlinks” are those sets of navigational links that appear at the top
* and bottom of board pages . They can be a list of links to boards and / or other pages such as status
* blogs and social network profiles / pages .
*
* " Groups " in the boardlinks are marked with square brackets . Tinyboard allows for infinite recursion
* with groups . Each array () in $config [ 'boards' ] represents a new square bracket group .
*/
// $config['boards'] = array(
// array('a', 'b'),
// array('c', 'd', 'e', 'f', 'g'),
// array('h', 'i', 'j'),
// array('k', array('l', 'm')),
// array('status' => 'http://status.example.org/')
// );
2013-08-11 07:06:13 -04:00
// Whether or not to put brackets around the whole board list
2013-08-11 09:50:33 -04:00
$config [ 'boardlist_wrap_bracket' ] = false ;
2013-08-11 07:06:13 -04:00
2013-09-14 10:42:20 -04:00
// Show page navigation links at the top as well.
$config [ 'page_nav_top' ] = false ;
// Show "Catalog" link in page navigation. Use with the Catalog theme.
// $config['catalog_link'] = 'catalog.html';
2013-08-02 20:52:58 -04:00
// Board categories. Only used in the "Categories" theme.
// $config['categories'] = array(
// 'Group Name' => array('a', 'b', 'c'),
// 'Another Group' => array('d')
// );
// Optional for the Categories theme. This is an array of name => (title, url) groups for categories
// with non-board links.
// $config['custom_categories'] = array(
// 'Links' => array(
// 'Tinyboard' => 'http://tinyboard.org',
// 'Donate' => 'donate.html'
// )
// );
2013-08-08 14:43:24 -04:00
2011-11-16 00:01:02 -05:00
// Automatically remove unnecessary whitespace when compiling HTML files from templates.
2012-03-13 09:08:31 -04:00
$config [ 'minify_html' ] = true ;
2012-03-30 20:10:54 -04:00
2013-08-08 17:57:52 -04:00
/*
* Advertisement HTML to appear at the top and bottom of board pages .
*/
// $config['ad'] = array(
// 'top' => '',
// 'bottom' => '',
// );
2013-08-16 07:08:01 -04:00
// Display flags (when available). This config option has no effect unless poster flags are enabled (see
// $config['country_flags']). Disable this if you want all previously-assigned flags to be hidden.
$config [ 'display_flags' ] = true ;
2013-09-17 18:47:34 -04:00
2013-08-16 07:08:01 -04:00
// Location of post flags/icons (where "%s" is the flag name). Defaults to static/flags/%s.png.
// $config['uri_flags'] = 'http://static.example.org/flags/%s.png';
2013-08-16 09:12:40 -04:00
// Width and height (and more?) of post flags. Can be overridden with the Tinyboard post modifier:
// <tinyboard flag style>.
$config [ 'flag_style' ] = 'width:16px;height:11px;' ;
2013-08-09 15:52:19 -04:00
2012-03-30 20:10:54 -04:00
/*
* ====================
* Javascript
* ====================
*/
2013-08-02 20:52:58 -04:00
// Additional Javascript files to include on board index and thread pages. See js/ for available scripts.
2012-03-31 04:18:53 -04:00
$config [ 'additional_javascript' ][] = 'js/inline-expanding.js' ;
// $config['additional_javascript'][] = 'js/local-time.js';
2013-08-02 20:52:58 -04:00
// Some scripts require jQuery. Check the comments in script files to see what's needed. When enabling
// jQuery, you should first empty the array so that "js/query.min.js" can be the first, and then re-add
// "js/inline-expanding.js" or else the inline-expanding script might not interact properly with other
// scripts.
// $config['additional_javascript'] = array();
2012-03-30 20:10:54 -04:00
// $config['additional_javascript'][] = 'js/jquery.min.js';
2013-08-02 20:52:58 -04:00
// $config['additional_javascript'][] = 'js/inline-expanding.js';
2012-03-30 20:10:54 -04:00
// $config['additional_javascript'][] = 'js/auto-reload.js';
2013-08-02 20:52:58 -04:00
// $config['additional_javascript'][] = 'js/post-hover.js';
// $config['additional_javascript'][] = 'js/style-select.js';
// Where these script files are located on the web. Defaults to $config['root'].
// $config['additional_javascript_url'] = 'http://static.example.org/tinyboard-javascript-stuff/';
2012-12-24 06:30:32 -05:00
2012-03-14 06:44:41 -04:00
// Compile all additional scripts into one file ($config['file_script']) instead of including them seperately.
$config [ 'additional_javascript_compile' ] = false ;
2013-08-02 20:52:58 -04:00
// Minify Javascript using http://code.google.com/p/minify/.
2012-03-30 20:10:54 -04:00
$config [ 'minify_js' ] = false ;
2013-12-25 10:28:50 -05:00
// Allows js/quick-reply-old.js to work. This could make your imageboard more vulnerable to flood attacks.
2012-03-31 04:18:53 -04:00
$config [ 'quick_reply' ] = false ;
2011-10-03 09:48:09 -04:00
/*
* ====================
* Video embedding
* ====================
*/
2013-08-02 20:52:58 -04:00
// Enable embedding (see below).
2011-10-03 09:48:09 -04:00
$config [ 'enable_embedding' ] = false ;
2013-08-02 20:52:58 -04:00
2011-10-03 09:48:09 -04:00
// Custom embedding (YouTube, vimeo, etc.)
2013-08-02 20:52:58 -04:00
// It's very important that you match the entire input (with ^ and $) or things will not work correctly.
2012-04-11 12:49:22 -04:00
$config [ 'embedding' ] = array (
array (
2011-11-16 16:03:01 -05:00
'/^https?:\/\/(\w+\.)?youtube\.com\/watch\?v=([a-zA-Z0-9\-_]{10,11})(&.+)?$/i' ,
2012-11-08 16:58:05 -05:00
'<iframe style="float: left;margin: 10px 20px;" width="%%tb_width%%" height="%%tb_height%%" frameborder="0" id="ytplayer" type="text/html" src="http://www.youtube.com/embed/$2"></iframe>'
2011-10-03 09:48:09 -04:00
),
2012-04-11 12:49:22 -04:00
array (
2011-10-03 09:48:09 -04:00
'/^https?:\/\/(\w+\.)?vimeo\.com\/(\d{2,10})(\?.+)?$/i' ,
'<object style="float: left;margin: 10px 20px;" width="%%tb_width%%" height="%%tb_height%%"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=$2&server=vimeo.com&show_title=0&show_byline=0&show_portrait=0&color=00adef&fullscreen=1&autoplay=0&loop=0" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=$2&server=vimeo.com&show_title=0&show_byline=0&show_portrait=0&color=00adef&fullscreen=1&autoplay=0&loop=0" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="%%tb_width%%" height="%%tb_height%%"></embed></object>'
),
2012-04-11 12:49:22 -04:00
array (
2011-10-03 09:48:09 -04:00
'/^https?:\/\/(\w+\.)?dailymotion\.com\/video\/([a-zA-Z0-9]{2,10})(_.+)?$/i' ,
'<object style="float: left;margin: 10px 20px;" width="%%tb_width%%" height="%%tb_height%%"><param name="movie" value="http://www.dailymotion.com/swf/video/$2"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><param name="wmode" value="transparent"></param><embed type="application/x-shockwave-flash" src="http://www.dailymotion.com/swf/video/$2" width="%%tb_width%%" height="%%tb_height%%" wmode="transparent" allowfullscreen="true" allowscriptaccess="always"></embed></object>'
),
2012-04-11 12:49:22 -04:00
array (
2011-10-03 09:48:09 -04:00
'/^https?:\/\/(\w+\.)?metacafe\.com\/watch\/(\d+)\/([a-zA-Z0-9_\-.]+)\/(\?.+)?$/i' ,
'<div style="float:left;margin:10px 20px;width:%%tb_width%%px;height:%%tb_height%%px"><embed flashVars="playerVars=showStats=no|autoPlay=no" src="http://www.metacafe.com/fplayer/$2/$3.swf" width="%%tb_width%%" height="%%tb_height%%" wmode="transparent" allowFullScreen="true" allowScriptAccess="always" name="Metacafe_$2" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></div>'
),
2012-04-11 12:49:22 -04:00
array (
2011-10-03 09:48:09 -04:00
'/^https?:\/\/video\.google\.com\/videoplay\?docid=(\d+)([&#](.+)?)?$/i' ,
'<embed src="http://video.google.com/googleplayer.swf?docid=$1&hl=en&fs=true" style="width:%%tb_width%%px;height:%%tb_height%%px;float:left;margin:10px 20px" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash"></embed>'
2013-01-05 07:45:21 -05:00
),
array (
'/^https?:\/\/(\w+\.)?vocaroo\.com\/i\/([a-zA-Z0-9]{2,15})$/i' ,
'<object style="float: left;margin: 10px 20px;" width="148" height="44"><param name="movie" value="http://vocaroo.com/player.swf?playMediaID=$2&autoplay=0"></param><param name="wmode" value="transparent"></param><embed src="http://vocaroo.com/player.swf?playMediaID=$2&autoplay=0" width="148" height="44" wmode="transparent" type="application/x-shockwave-flash"></embed></object>'
2011-10-03 09:48:09 -04:00
)
);
2013-08-02 20:52:58 -04:00
// Embedding width and height.
2011-10-03 09:48:09 -04:00
$config [ 'embed_width' ] = 300 ;
$config [ 'embed_height' ] = 246 ;
2013-08-02 20:52:58 -04:00
2011-10-03 09:48:09 -04:00
/*
* ====================
* Error messages
* ====================
*/
2013-08-02 20:52:58 -04:00
2011-10-03 09:48:09 -04:00
// Error messages
2012-03-03 23:28:09 -05:00
$config [ 'error' ][ 'bot' ] = _ ( 'You look like a bot.' );
$config [ 'error' ][ 'referer' ] = _ ( 'Your browser sent an invalid or no HTTP referer.' );
$config [ 'error' ][ 'toolong' ] = _ ( 'The %s field was too long.' );
$config [ 'error' ][ 'toolong_body' ] = _ ( 'The body was too long.' );
$config [ 'error' ][ 'tooshort_body' ] = _ ( 'The body was too short or empty.' );
$config [ 'error' ][ 'noimage' ] = _ ( 'You must upload an image.' );
$config [ 'error' ][ 'nomove' ] = _ ( 'The server failed to handle your upload.' );
$config [ 'error' ][ 'fileext' ] = _ ( 'Unsupported image format.' );
$config [ 'error' ][ 'noboard' ] = _ ( 'Invalid board!' );
$config [ 'error' ][ 'nonexistant' ] = _ ( 'Thread specified does not exist.' );
$config [ 'error' ][ 'locked' ] = _ ( 'Thread locked. You may not reply at this time.' );
2013-06-18 13:21:41 -04:00
$config [ 'error' ][ 'reply_hard_limit' ] = _ ( 'Thread has reached its maximum reply limit.' );
$config [ 'error' ][ 'image_hard_limit' ] = _ ( 'Thread has reached its maximum image limit.' );
2012-03-03 23:28:09 -05:00
$config [ 'error' ][ 'nopost' ] = _ ( 'You didn\'t make a post.' );
$config [ 'error' ][ 'flood' ] = _ ( 'Flood detected; Post discarded.' );
$config [ 'error' ][ 'spam' ] = _ ( 'Your request looks automated; Post discarded.' );
$config [ 'error' ][ 'unoriginal' ] = _ ( 'Unoriginal content!' );
$config [ 'error' ][ 'muted' ] = _ ( 'Unoriginal content! You have been muted for %d seconds.' );
$config [ 'error' ][ 'youaremuted' ] = _ ( 'You are muted! Expires in %d seconds.' );
$config [ 'error' ][ 'dnsbl' ] = _ ( 'Your IP address is listed in %s.' );
$config [ 'error' ][ 'toomanylinks' ] = _ ( 'Too many links; flood detected.' );
$config [ 'error' ][ 'toomanycites' ] = _ ( 'Too many cites; post discarded.' );
$config [ 'error' ][ 'toomanycross' ] = _ ( 'Too many cross-board links; post discarded.' );
$config [ 'error' ][ 'nodelete' ] = _ ( 'You didn\'t select anything to delete.' );
$config [ 'error' ][ 'noreport' ] = _ ( 'You didn\'t select anything to report.' );
$config [ 'error' ][ 'toomanyreports' ] = _ ( 'You can\'t report that many posts at once.' );
$config [ 'error' ][ 'invalidpassword' ] = _ ( 'Wrong password…' );
$config [ 'error' ][ 'invalidimg' ] = _ ( 'Invalid image.' );
$config [ 'error' ][ 'unknownext' ] = _ ( 'Unknown file extension.' );
$config [ 'error' ][ 'filesize' ] = _ ( 'Maximum file size: %maxsz% bytes<br>Your file\'s size: %filesz% bytes' );
$config [ 'error' ][ 'maxsize' ] = _ ( 'The file was too big.' );
$config [ 'error' ][ 'fileexists' ] = _ ( 'That file <a href="%s">already exists</a>!' );
2012-11-14 15:33:27 -05:00
$config [ 'error' ][ 'fileexistsinthread' ] = _ ( 'That file <a href="%s">already exists</a> in this thread!' );
2012-03-03 23:28:09 -05:00
$config [ 'error' ][ 'delete_too_soon' ] = _ ( 'You\'ll have to wait another %s before deleting that.' );
$config [ 'error' ][ 'mime_exploit' ] = _ ( 'MIME type detection XSS exploit (IE) detected; post discarded.' );
$config [ 'error' ][ 'invalid_embed' ] = _ ( 'Couldn\'t make sense of the URL of the video you tried to embed.' );
$config [ 'error' ][ 'captcha' ] = _ ( 'You seem to have mistyped the verification.' );
2013-08-02 20:52:58 -04:00
2011-10-03 09:48:09 -04:00
// Moderator errors
2013-04-16 18:14:51 -04:00
$config [ 'error' ][ 'toomanyunban' ] = _ ( 'You are only allowed to unban %s users at a time. You tried to unban %u users.' );
2012-03-03 23:28:09 -05:00
$config [ 'error' ][ 'invalid' ] = _ ( 'Invalid username and/or password.' );
$config [ 'error' ][ 'notamod' ] = _ ( 'You are not a mod…' );
$config [ 'error' ][ 'invalidafter' ] = _ ( 'Invalid username and/or password. Your user may have been deleted or changed.' );
$config [ 'error' ][ 'malformed' ] = _ ( 'Invalid/malformed cookies.' );
$config [ 'error' ][ 'missedafield' ] = _ ( 'Your browser didn\'t submit an input when it should have.' );
$config [ 'error' ][ 'required' ] = _ ( 'The %s field is required.' );
$config [ 'error' ][ 'invalidfield' ] = _ ( 'The %s field was invalid.' );
$config [ 'error' ][ 'boardexists' ] = _ ( 'There is already a %s board.' );
$config [ 'error' ][ 'noaccess' ] = _ ( 'You don\'t have permission to do that.' );
$config [ 'error' ][ 'invalidpost' ] = _ ( 'That post doesn\'t exist…' );
$config [ 'error' ][ '404' ] = _ ( 'Page not found.' );
$config [ 'error' ][ 'modexists' ] = _ ( 'That mod <a href="?/users/%d">already exists</a>!' );
$config [ 'error' ][ 'invalidtheme' ] = _ ( 'That theme doesn\'t exist!' );
2012-08-27 01:19:05 -04:00
$config [ 'error' ][ 'csrf' ] = _ ( 'Invalid security token! Please go back and try again.' );
2013-09-20 22:21:05 -04:00
$config [ 'error' ][ 'badsyntax' ] = _ ( 'Your code contained PHP syntax errors. Please go back and correct them. PHP says: ' );
2011-10-03 09:48:09 -04:00
/*
* =========================
* Directory / file settings
* =========================
*/
2013-08-02 20:52:58 -04:00
2010-11-02 08:05:18 -04:00
// The root directory, including the trailing slash, for Tinyboard.
2013-08-02 20:52:58 -04:00
// Examples: '/', 'http://boards.chan.org/', '/chan/'.
2013-09-21 18:13:19 -04:00
if ( isset ( $_SERVER [ 'REQUEST_URI' ])) {
$request_uri = $_SERVER [ 'REQUEST_URI' ];
if ( isset ( $_SERVER [ 'QUERY_STRING' ]) && $_SERVER [ 'QUERY_STRING' ] !== '' )
$request_uri = substr ( $request_uri , 0 , - 1 - strlen ( $_SERVER [ 'QUERY_STRING' ]));
$config [ 'root' ] = str_replace ( '\\' , '/' , dirname ( $request_uri )) == '/'
? '/' : str_replace ( '\\' , '/' , dirname ( $request_uri )) . '/' ;
unset ( $request_uri );
} else
2012-03-14 00:38:28 -04:00
$config [ 'root' ] = '/' ; // CLI mode
2012-12-22 22:38:20 -05:00
2013-07-31 04:02:40 -04:00
// The scheme and domain. This is used to get the site's absolute URL (eg. for image identification links).
// If you use the CLI tools, it would be wise to override this setting.
2013-08-02 20:52:58 -04:00
$config [ 'domain' ] = ( isset ( $_SERVER [ 'HTTPS' ]) && $_SERVER [ 'HTTPS' ] != 'off' ) ? 'https://' : 'http://' ;
$config [ 'domain' ] .= isset ( $_SERVER [ 'HTTP_HOST' ]) ? $_SERVER [ 'HTTP_HOST' ] : 'localhost' ;
2011-10-03 09:48:09 -04:00
// If for some reason the folders and static HTML index files aren't in the current working direcotry,
// enter the directory path here. Otherwise, keep it false.
2012-03-13 11:44:33 -04:00
$config [ 'root_file' ] = false ;
2013-08-02 20:52:58 -04:00
// Location of files.
2012-03-13 11:44:33 -04:00
$config [ 'file_index' ] = 'index.html' ;
$config [ 'file_page' ] = '%d.html' ;
2013-08-10 17:16:30 -04:00
$config [ 'file_page50' ] = '%d+50.html' ;
2012-03-13 11:44:33 -04:00
$config [ 'file_mod' ] = 'mod.php' ;
$config [ 'file_post' ] = 'post.php' ;
$config [ 'file_script' ] = 'main.js' ;
2013-08-02 20:52:58 -04:00
// Board directory, followed by a forward-slash (/).
2012-03-13 11:44:33 -04:00
$config [ 'board_path' ] = '%s/' ;
2013-08-02 20:52:58 -04:00
// Misc directories.
2012-03-13 11:44:33 -04:00
$config [ 'dir' ][ 'img' ] = 'src/' ;
$config [ 'dir' ][ 'thumb' ] = 'thumb/' ;
$config [ 'dir' ][ 'res' ] = 'res/' ;
2013-08-02 20:52:58 -04:00
// For load balancing, having a seperate server (and domain/subdomain) for serving static content is
// possible. This can either be a directory or a URL. Defaults to $config['root'] . 'static/'.
// $config['dir']['static'] = 'http://static.example.org/';
// Where to store the .html templates. This folder and the template files must exist.
2011-12-17 16:48:16 -05:00
$config [ 'dir' ][ 'template' ] = getcwd () . '/templates' ;
2013-08-02 20:52:58 -04:00
// Location of Tinyboard "themes".
2011-12-17 16:48:16 -05:00
$config [ 'dir' ][ 'themes' ] = getcwd () . '/templates/themes' ;
2013-08-02 20:52:58 -04:00
// Same as above, but a URI (accessable by web interface).
2011-12-17 16:48:16 -05:00
$config [ 'dir' ][ 'themes_uri' ] = 'templates/themes' ;
2013-08-02 20:52:58 -04:00
// Home directory. Used by themes.
2011-12-17 16:48:16 -05:00
$config [ 'dir' ][ 'home' ] = '' ;
2013-08-02 20:52:58 -04:00
2014-02-23 18:06:01 -05:00
// Location of a blank 1x1 gif file. Only used when country_flags_condensed is enabled
2014-02-24 09:29:26 -05:00
// $config['image_blank'] = 'static/blank.gif';
2014-02-23 18:06:01 -05:00
2013-08-02 20:52:58 -04:00
// Static images. These can be URLs OR base64 (data URI scheme). These are only used if
// $config['font_awesome'] is false (default).
2014-05-05 16:32:18 -04:00
// $config['image_sticky'] = 'static/sticky.png';
2013-08-02 21:01:04 -04:00
// $config['image_locked'] = 'static/locked.gif';
2014-05-05 16:32:18 -04:00
// $config['image_bumplocked'] = 'static/sage.png'.
2013-08-02 20:52:58 -04:00
// If you want to put images and other dynamic-static stuff on another (preferably cookieless) domain.
// This will override $config['root'] and $config['dir']['...'] directives. "%s" will get replaced with
2013-08-04 16:46:08 -04:00
// $board['dir'], which includes a trailing slash.
2011-03-17 03:56:18 -04:00
// $config['uri_thumb'] = 'http://images.example.org/%sthumb/';
// $config['uri_img'] = 'http://images.example.org/%ssrc/';
2013-08-02 20:52:58 -04:00
// Set custom locations for stylesheets and the main script file. This can be used for load balancing
// across multiple servers or hostnames.
2011-10-03 09:48:09 -04:00
// $config['url_stylesheet'] = 'http://static.example.org/style.css'; // main/base stylesheet
// $config['url_javascript'] = 'http://static.example.org/main.js';
2013-08-02 20:52:58 -04:00
// Website favicon.
2011-10-03 09:48:09 -04:00
// $config['url_favicon'] = '/favicon.gif';
2011-02-12 01:25:15 -05:00
2013-08-03 07:50:25 -04:00
// EXPERIMENTAL: Try not to build pages when we shouldn't have to.
2013-08-16 06:16:09 -04:00
$config [ 'try_smarter' ] = true ;
2013-08-02 20:52:58 -04:00
2011-10-03 09:48:09 -04:00
/*
* ====================
* Mod settings
* ====================
*/
2013-08-02 20:52:58 -04:00
2013-09-16 19:15:24 -04:00
// Limit how many bans can be removed via the ban list. Set to false (or zero) for no limit.
$config [ 'mod' ][ 'unban_limit' ] = false ;
2013-08-02 20:52:58 -04:00
// Whether or not to lock moderator sessions to IP addresses. This makes cookie theft ineffective.
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'lock_ip' ] = true ;
2013-08-02 20:52:58 -04:00
// The page that is first shown when a moderator logs in. Defaults to the dashboard (?/).
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'default' ] = '/' ;
2013-08-02 20:52:58 -04:00
// Mod links (full HTML).
2011-10-03 09:48:09 -04:00
$config [ 'mod' ][ 'link_delete' ] = '[D]' ;
$config [ 'mod' ][ 'link_ban' ] = '[B]' ;
$config [ 'mod' ][ 'link_bandelete' ] = '[B&D]' ;
$config [ 'mod' ][ 'link_deletefile' ] = '[F]' ;
2013-08-08 15:41:21 -04:00
$config [ 'mod' ][ 'link_spoilerimage' ] = '[S]' ;
2011-10-03 09:48:09 -04:00
$config [ 'mod' ][ 'link_deletebyip' ] = '[D+]' ;
2012-03-25 01:12:42 -04:00
$config [ 'mod' ][ 'link_deletebyip_global' ] = '[D++]' ;
2011-10-03 09:48:09 -04:00
$config [ 'mod' ][ 'link_sticky' ] = '[Sticky]' ;
$config [ 'mod' ][ 'link_desticky' ] = '[-Sticky]' ;
$config [ 'mod' ][ 'link_lock' ] = '[Lock]' ;
$config [ 'mod' ][ 'link_unlock' ] = '[-Lock]' ;
2011-10-10 07:37:39 -04:00
$config [ 'mod' ][ 'link_bumplock' ] = '[Sage]' ;
$config [ 'mod' ][ 'link_bumpunlock' ] = '[-Sage]' ;
2012-02-15 04:11:09 -05:00
$config [ 'mod' ][ 'link_editpost' ] = '[Edit]' ;
2011-11-18 09:35:22 -05:00
$config [ 'mod' ][ 'link_move' ] = '[Move]' ;
2013-08-02 20:52:58 -04:00
// Moderator capcodes.
2012-05-03 10:21:16 -04:00
$config [ 'capcode' ] = ' <span class="capcode">## %s</span>' ;
2013-08-02 20:52:58 -04:00
// "## Custom" becomes lightgreen, italic and bold:
2012-05-03 10:21:16 -04:00
//$config['custom_capcode']['Custom'] ='<span class="capcode" style="color:lightgreen;font-style:italic;font-weight:bold"> ## %s</span>';
2013-08-02 20:52:58 -04:00
// "## Mod" makes everything purple, including the name and tripcode:
2012-04-11 12:49:22 -04:00
//$config['custom_capcode']['Mod'] = array(
2012-05-03 10:21:16 -04:00
// '<span class="capcode" style="color:purple"> ## %s</span>',
2011-10-03 09:48:09 -04:00
// 'color:purple', // Change name style; optional
// 'color:purple' // Change tripcode style; optional
//);
2013-08-02 20:52:58 -04:00
// "## Admin" makes everything red and bold, including the name and tripcode:
2012-04-11 12:49:22 -04:00
//$config['custom_capcode']['Admin'] = array(
2012-05-03 10:21:16 -04:00
// '<span class="capcode" style="color:red;font-weight:bold"> ## %s</span>',
2011-10-03 09:48:09 -04:00
// 'color:red;font-weight:bold', // Change name style; optional
// 'color:red;font-weight:bold' // Change tripcode style; optional
//);
2013-08-02 20:52:58 -04:00
2013-08-08 17:08:01 -04:00
// Enable the moving of single replies
$config [ 'move_replies' ] = false ;
2013-08-04 04:48:13 -04:00
// How often (minimum) to purge the ban list of expired bans (which have been seen). Only works when
2013-08-04 16:46:08 -04:00
// $config['cache'] is enabled and working.
2013-08-04 04:48:13 -04:00
$config [ 'purge_bans' ] = 60 * 60 * 12 ; // 12 hours
2013-08-02 20:52:58 -04:00
// Do DNS lookups on IP addresses to get their hostname for the moderator IP pages (?/IP/x.x.x.x).
2011-10-03 09:48:09 -04:00
$config [ 'mod' ][ 'dns_lookup' ] = true ;
2013-08-02 20:52:58 -04:00
// How many recent posts, per board, to show in ?/IP/x.x.x.x.
2011-10-03 09:48:09 -04:00
$config [ 'mod' ][ 'ip_recentposts' ] = 5 ;
2013-08-02 20:52:58 -04:00
// Number of posts to display on the reports page.
2011-10-03 09:48:09 -04:00
$config [ 'mod' ][ 'recent_reports' ] = 10 ;
2013-08-02 20:52:58 -04:00
// Number of actions to show per page in the moderation log.
2011-10-03 09:48:09 -04:00
$config [ 'mod' ][ 'modlog_page' ] = 350 ;
2013-08-02 20:52:58 -04:00
// Number of bans to show per page in the ban list.
2012-04-16 05:13:30 -04:00
$config [ 'mod' ][ 'banlist_page' ] = 350 ;
2013-08-02 20:52:58 -04:00
// Number of news entries to display per page.
2012-05-05 11:33:10 -04:00
$config [ 'mod' ][ 'news_page' ] = 40 ;
2013-08-02 20:52:58 -04:00
// Number of results to display per page.
2013-07-20 12:05:42 -04:00
$config [ 'mod' ][ 'search_page' ] = 200 ;
2013-08-02 20:52:58 -04:00
// Number of entries to show per page in the moderator noticeboard.
2012-04-21 01:15:32 -04:00
$config [ 'mod' ][ 'noticeboard_page' ] = 50 ;
2013-08-02 20:52:58 -04:00
// Number of entries to summarize and display on the dashboard.
2011-10-03 09:48:09 -04:00
$config [ 'mod' ][ 'noticeboard_dashboard' ] = 5 ;
2013-08-02 20:52:58 -04:00
// Check public ban message by default.
2013-07-22 17:51:13 -04:00
$config [ 'mod' ][ 'check_ban_message' ] = false ;
2013-08-02 20:52:58 -04:00
// Default public ban message. In public ban messages, %length% is replaced with "for x days" or
// "permanently" (with %LENGTH% being the uppercase equivalent).
2013-07-27 01:33:21 -04:00
$config [ 'mod' ][ 'default_ban_message' ] = _ ( 'USER WAS BANNED FOR THIS POST' );
2013-08-02 20:52:58 -04:00
// $config['mod']['default_ban_message'] = 'USER WAS BANNED %LENGTH% FOR THIS POST';
// HTML to append to post bodies for public bans messages (where "%s" is the message).
2011-10-03 09:48:09 -04:00
$config [ 'mod' ][ 'ban_message' ] = '<span class="public_ban">(%s)</span>' ;
2013-08-02 20:52:58 -04:00
// When moving a thread to another board and choosing to keep a "shadow thread", an automated post (with
// a capcode) will be made, linking to the new location for the thread. "%s" will be replaced with a
// standard cross-board post citation (>>>/board/xxx)
2014-04-20 20:41:01 -04:00
$config [ 'mod' ][ 'shadow_mesage' ] = _ ( 'Moved to %s.' );
2011-11-18 11:40:23 -05:00
// Capcode to use when posting the above message.
$config [ 'mod' ][ 'shadow_capcode' ] = 'Mod' ;
2013-08-02 20:52:58 -04:00
// Name to use when posting the above message. If false, $config['anonymous'] will be used.
2013-03-20 07:46:48 -04:00
$config [ 'mod' ][ 'shadow_name' ] = false ;
2013-08-02 20:52:58 -04:00
// PHP time limit for ?/rebuild. A value of 0 should cause PHP to wait indefinitely.
2011-10-03 09:48:09 -04:00
$config [ 'mod' ][ 'rebuild_timelimit' ] = 0 ;
2013-08-02 20:52:58 -04:00
// PM snippet (for ?/inbox) length in characters.
2011-10-03 09:48:09 -04:00
$config [ 'mod' ][ 'snippet_length' ] = 75 ;
2013-08-02 20:52:58 -04:00
// Edit raw HTML in posts by default.
2013-01-24 03:16:25 -05:00
$config [ 'mod' ][ 'raw_html_default' ] = false ;
2013-08-02 20:52:58 -04:00
// Automatically dismiss all reports regarding a thread when it is locked.
2013-07-16 02:32:44 -04:00
$config [ 'mod' ][ 'dismiss_reports_on_lock' ] = true ;
2013-08-02 20:52:58 -04:00
// Replace ?/config with a simple text editor for editing inc/instance-config.php.
2013-08-01 17:18:10 -04:00
$config [ 'mod' ][ 'config_editor_php' ] = false ;
2013-08-02 20:52:58 -04:00
/*
* ====================
* Mod permissions
* ====================
*/
2013-09-08 11:33:51 -04:00
// Probably best not to change this unless you are smart enough to figure out what you're doing. If you
// decide to change it, remember that it is impossible to redefinite/overwrite groups; you may only add
// new ones.
$config [ 'mod' ][ 'groups' ] = array (
10 => 'Janitor' ,
20 => 'Mod' ,
30 => 'Admin' ,
// 98 => 'God',
99 => 'Disabled'
);
// If you add stuff to the above, you'll need to call this function immediately after.
define_groups ();
// Example: Adding a new permissions group.
// $config['mod']['groups'][0] = 'NearlyPowerless';
// define_groups();
2013-08-02 20:52:58 -04:00
// Capcode permissions.
2012-05-07 04:22:20 -04:00
$config [ 'mod' ][ 'capcode' ] = array (
// JANITOR => array('Janitor'),
2013-09-08 11:33:51 -04:00
MOD => array ( 'Mod' ),
2012-05-07 04:22:20 -04:00
ADMIN => true
);
2013-08-02 20:52:58 -04:00
2012-05-07 04:22:20 -04:00
// Example: Allow mods to post with "## Moderator" as well
// $config['mod']['capcode'][MOD][] = 'Moderator';
// Example: Allow janitors to post with any capcode
// $config['mod']['capcode'][JANITOR] = true;
2013-08-02 20:52:58 -04:00
// Set any of the below to "DISABLED" to make them unavailable for everyone.
2011-07-03 09:11:31 -04:00
// Don't worry about per-board moderators. Let all mods moderate any board.
2012-03-16 23:38:06 -04:00
$config [ 'mod' ][ 'skip_per_board' ] = false ;
2013-08-02 20:52:58 -04:00
2010-12-16 10:20:16 -05:00
/* Post Controls */
2010-12-12 10:44:43 -05:00
// View IP addresses
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'show_ip' ] = MOD ;
2010-12-12 10:44:43 -05:00
// Delete a post
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'delete' ] = JANITOR ;
2010-12-12 10:44:43 -05:00
// Ban a user for a post
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'ban' ] = MOD ;
2010-12-12 10:44:43 -05:00
// Ban and delete (one click; instant)
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'bandelete' ] = MOD ;
2011-02-17 08:36:50 -05:00
// Remove bans
$config [ 'mod' ][ 'unban' ] = MOD ;
2013-08-11 23:01:34 -04:00
// Spoiler image
2013-08-11 17:34:43 -04:00
$config [ 'mod' ][ 'spoilerimage' ] = JANITOR ;
2010-12-12 10:44:43 -05:00
// Delete file (and keep post)
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'deletefile' ] = JANITOR ;
2010-12-12 10:44:43 -05:00
// Delete all posts by IP
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'deletebyip' ] = MOD ;
2012-03-25 01:12:42 -04:00
// Delete all posts by IP across all boards
$config [ 'mod' ][ 'deletebyip_global' ] = ADMIN ;
2010-12-16 01:04:33 -05:00
// Sticky a thread
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'sticky' ] = MOD ;
2011-01-02 09:23:34 -05:00
// Lock a thread
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'lock' ] = MOD ;
2011-01-02 09:33:57 -05:00
// Post in a locked thread
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'postinlocked' ] = MOD ;
2011-10-10 07:37:39 -04:00
// Prevent a thread from being bumped
$config [ 'mod' ][ 'bumplock' ] = MOD ;
// View whether a thread has been bumplocked ("-1" to allow non-mods to see too)
$config [ 'mod' ][ 'view_bumplock' ] = MOD ;
2013-01-23 12:16:09 -05:00
// Edit posts
$config [ 'mod' ][ 'editpost' ] = ADMIN ;
2011-12-03 21:51:12 -05:00
// "Move" a thread to another board (EXPERIMENTAL; has some known bugs)
$config [ 'mod' ][ 'move' ] = DISABLED ;
2012-02-16 07:07:25 -05:00
// Bypass "field_disable_*" (forced anonymity, etc.)
$config [ 'mod' ][ 'bypass_field_disable' ] = MOD ;
2011-10-10 07:37:39 -04:00
// Post bypass unoriginal content check on robot-enabled boards
2011-02-16 04:38:28 -05:00
$config [ 'mod' ][ 'postunoriginal' ] = ADMIN ;
2011-02-17 01:07:22 -05:00
// Bypass flood check
2013-09-06 09:09:18 -04:00
$config [ 'mod' ][ 'bypass_filters' ] = ADMIN ;
$config [ 'mod' ][ 'flood' ] = & $config [ 'mod' ][ 'bypass_filters' ];
2011-02-03 04:28:14 -05:00
// Raw HTML posting
2013-08-01 17:18:10 -04:00
$config [ 'mod' ][ 'rawhtml' ] = ADMIN ;
2013-08-02 20:52:58 -04:00
2010-12-16 10:20:16 -05:00
/* Administration */
2011-02-20 01:19:57 -05:00
// View the report queue
$config [ 'mod' ][ 'reports' ] = JANITOR ;
// Dismiss an abuse report
$config [ 'mod' ][ 'report_dismiss' ] = JANITOR ;
// Dismiss all abuse reports by an IP
$config [ 'mod' ][ 'report_dismiss_ip' ] = JANITOR ;
2011-02-06 08:38:01 -05:00
// View list of bans
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'view_banlist' ] = MOD ;
2011-02-06 08:38:01 -05:00
// View the username of the mod who made a ban
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'view_banstaff' ] = MOD ;
2013-08-02 20:52:58 -04:00
// If the moderator doesn't fit the $config['mod']['view_banstaff''] (previous) permission, show him just
// a "?" instead. Otherwise, it will be "Mod" or "Admin".
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'view_banquestionmark' ] = false ;
2011-02-06 08:38:01 -05:00
// Show expired bans in the ban list (they are kept in cache until the culprit returns)
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'view_banexpired' ] = true ;
2011-02-17 08:36:50 -05:00
// View ban for IP address
2011-10-01 02:13:23 -04:00
$config [ 'mod' ][ 'view_ban' ] = $config [ 'mod' ][ 'view_banlist' ];
2011-04-05 03:36:00 -04:00
// View IP address notes
$config [ 'mod' ][ 'view_notes' ] = JANITOR ;
// Create notes
2011-10-01 02:13:23 -04:00
$config [ 'mod' ][ 'create_notes' ] = $config [ 'mod' ][ 'view_notes' ];
2011-04-05 03:36:00 -04:00
// Remote notes
$config [ 'mod' ][ 'remove_notes' ] = ADMIN ;
2010-12-16 10:20:16 -05:00
// Create a new board
2011-02-12 01:25:15 -05:00
$config [ 'mod' ][ 'newboard' ] = ADMIN ;
2011-02-22 01:38:38 -05:00
// Manage existing boards (change title, etc)
$config [ 'mod' ][ 'manageboards' ] = ADMIN ;
// Delete a board
$config [ 'mod' ][ 'deleteboard' ] = ADMIN ;
2011-03-02 01:15:37 -05:00
// List/manage users
$config [ 'mod' ][ 'manageusers' ] = MOD ;
// Promote/demote users
$config [ 'mod' ][ 'promoteusers' ] = ADMIN ;
// Edit any users' login information
$config [ 'mod' ][ 'editusers' ] = ADMIN ;
2011-03-27 11:41:06 -04:00
// Change user's own password
$config [ 'mod' ][ 'change_password' ] = JANITOR ;
2011-03-02 01:15:37 -05:00
// Delete a user
$config [ 'mod' ][ 'deleteusers' ] = ADMIN ;
// Create a user
$config [ 'mod' ][ 'createusers' ] = ADMIN ;
2011-03-02 01:51:29 -05:00
// View the moderation log
$config [ 'mod' ][ 'modlog' ] = ADMIN ;
2013-07-31 00:04:57 -04:00
// View IP addresses of other mods in ?/log
$config [ 'mod' ][ 'show_ip_modlog' ] = ADMIN ;
2013-08-02 20:52:58 -04:00
// View relevant moderation log entries on IP address pages (ie. ban history, etc.) Warning: Can be
// pretty resource intensive if your mod logs are huge.
2013-03-16 03:27:24 -04:00
$config [ 'mod' ][ 'modlog_ip' ] = MOD ;
2011-03-17 03:56:18 -04:00
// Create a PM (viewing mod usernames)
$config [ 'mod' ][ 'create_pm' ] = JANITOR ;
2011-04-10 15:15:15 -04:00
// Read any PM, sent to or from anybody
$config [ 'mod' ][ 'master_pm' ] = ADMIN ;
2011-03-26 11:36:32 -04:00
// Rebuild everything
$config [ 'mod' ][ 'rebuild' ] = ADMIN ;
2013-07-20 07:50:33 -04:00
// Search through posts, IP address notes and bans
2011-03-29 09:56:38 -04:00
$config [ 'mod' ][ 'search' ] = JANITOR ;
2013-08-02 20:52:58 -04:00
// Allow searching posts (can be used with board configuration file to disallow searching through a
// certain board)
2013-07-29 16:18:06 -04:00
$config [ 'mod' ][ 'search_posts' ] = JANITOR ;
2011-03-30 06:47:06 -04:00
// Read the moderator noticeboard
$config [ 'mod' ][ 'noticeboard' ] = JANITOR ;
// Post to the moderator noticeboard
$config [ 'mod' ][ 'noticeboard_post' ] = MOD ;
// Delete entries from the noticeboard
$config [ 'mod' ][ 'noticeboard_delete' ] = ADMIN ;
2011-04-03 04:20:55 -04:00
// Public ban messages; attached to posts
$config [ 'mod' ][ 'public_ban' ] = MOD ;
2011-04-13 09:47:47 -04:00
// Manage and install themes for homepage
$config [ 'mod' ][ 'themes' ] = ADMIN ;
2011-04-13 10:24:49 -04:00
// Post news entries
$config [ 'mod' ][ 'news' ] = ADMIN ;
// Custom name when posting news
$config [ 'mod' ][ 'news_custom' ] = ADMIN ;
// Delete news entries
$config [ 'mod' ][ 'news_delete' ] = ADMIN ;
2013-01-25 07:56:55 -05:00
// Execute un-filtered SQL queries on the database (?/debug/sql)
$config [ 'mod' ][ 'debug_sql' ] = DISABLED ;
2013-09-22 20:11:16 -04:00
// Look through all cache values for debugging when APC is enabled (?/debug/apc)
$config [ 'mod' ][ 'debug_apc' ] = ADMIN ;
2012-02-06 01:42:25 -05:00
// Edit the current configuration (via web interface)
$config [ 'mod' ][ 'edit_config' ] = ADMIN ;
2013-09-20 22:51:23 -04:00
// View ban appeals
$config [ 'mod' ][ 'view_ban_appeals' ] = MOD ;
// Accept and deny ban appeals
$config [ 'mod' ][ 'ban_appeals' ] = MOD ;
2013-08-02 20:52:58 -04:00
2013-08-04 17:53:09 -04:00
// Config editor permissions
2013-09-08 11:33:51 -04:00
$config [ 'mod' ][ 'config' ] = array ();
2013-08-04 17:53:09 -04:00
// Disable the following configuration variables from being changed via ?/config. The following default
// banned variables are considered somewhat dangerous.
$config [ 'mod' ][ 'config' ][ DISABLED ] = array (
'mod>config' ,
'mod>config_editor_php' ,
2013-09-08 11:33:51 -04:00
'mod>groups' ,
2013-08-04 17:53:09 -04:00
'convert_args' ,
'db>password' ,
);
2012-02-06 01:42:25 -05:00
2013-08-04 17:53:09 -04:00
$config [ 'mod' ][ 'config' ][ JANITOR ] = array (
'!' , // Allow editing ONLY the variables listed (in this case, nothing).
);
$config [ 'mod' ][ 'config' ][ MOD ] = array (
'!' , // Allow editing ONLY the variables listed (plus that in $config['mod']['config'][JANITOR]).
'global_message' ,
);
// Example: Disallow ADMIN from editing (and viewing) $config['db']['password'].
// $config['mod']['config'][ADMIN] = array(
// 'db>password',
// );
2013-01-25 07:56:55 -05:00
2013-08-04 17:53:09 -04:00
// Example: Allow ADMIN to edit anything other than $config['db']
// (and $config['mod']['config'][DISABLED]).
// $config['mod']['config'][ADMIN] = array(
// 'db',
// );
2013-08-02 20:52:58 -04:00
2014-05-06 15:53:05 -04:00
// Allow OP to remove arbitrary posts in his thread
$config [ 'user_moderation' ] = false ;
2011-10-03 09:48:09 -04:00
/*
* ====================
2013-07-20 22:45:21 -04:00
* Public post search
* ====================
*/
$config [ 'search' ] = array ();
// Enable the search form
$config [ 'search' ][ 'enable' ] = false ;
// Maximal number of queries per IP address per minutes
$config [ 'search' ][ 'queries_per_minutes' ] = Array ( 15 , 2 );
// Global maximal number of queries per minutes
$config [ 'search' ][ 'queries_per_minutes_all' ] = Array ( 50 , 2 );
// Limit of search results
$config [ 'search' ][ 'search_limit' ] = 100 ;
// Boards for searching
//$config['search']['boards'] = array('a', 'b', 'c', 'd', 'e');
2011-10-03 09:48:09 -04:00
/*
* ====================
2012-03-18 11:41:06 -04:00
* Events ( PHP 5.3 . 0 + )
* ====================
*/
2012-04-10 12:37:12 -04:00
// http://tinyboard.org/docs/?p=Events
2012-03-18 11:41:06 -04:00
// event_handler('post', function($post) {
// // do something
// });
2013-08-02 20:52:58 -04:00
2012-03-18 11:41:06 -04:00
// event_handler('post', function($post) {
// // do something else
//
// // return an error (reject post)
// return 'Sorry, you cannot post that!';
// });
/*
2013-08-20 12:53:05 -04:00
* =============
* API settings
* =============
*/
2013-08-21 08:41:42 -04:00
// Whether or not to enable the 4chan-compatible API, disabled by default. See
// https://github.com/4chan/4chan-API for API specification.
2014-03-08 19:51:39 -05:00
$config [ 'api' ][ 'enabled' ] = true ;
2013-08-20 12:53:05 -04:00
2013-08-21 08:41:42 -04:00
// Extra fields in to be shown in the array that are not in the 4chan-API. You can get these by taking a
// look at the schema for posts_ tables. The array should be formatted as $db_column => $translated_name.
// Example: Adding the pre-markup post body to the API as "com_nomarkup".
// $config['api']['extra_fields'] = array('body_nomarkup' => 'com_nomarkup');
2013-08-20 14:17:05 -04:00
2013-08-20 12:53:05 -04:00
/*
2012-03-18 11:41:06 -04:00
* ====================
2011-10-03 09:48:09 -04:00
* Other / uncategorized
* ====================
*/
2013-08-02 20:52:58 -04:00
// Meta keywords. It's probably best to include these in per-board configurations.
// $config['meta_keywords'] = 'chan,anonymous discussion,imageboard,tinyboard';
// Link imageboard to your Google Analytics account to track users and provide traffic insights.
2011-04-06 04:31:26 -04:00
// $config['google_analytics'] = 'UA-xxxxxxx-yy';
2011-04-22 10:24:15 -04:00
// Keep the Google Analytics cookies to one domain -- ga._setDomainName()
// $config['google_analytics_domain'] = 'www.example.org';
2013-08-02 20:52:58 -04:00
// If you use Varnish, Squid, or any similar caching reverse-proxy in front of Tinyboard, you can
// configure Tinyboard to PURGE files when they're written to.
// $config['purge'] = array(
// array('127.0.0.1', 80)
// array('127.0.0.1', 80, 'example.org')
// );
2013-08-03 05:21:02 -04:00
// Connection timeout for $config['purge'], in seconds.
2011-05-21 11:12:57 -04:00
$config [ 'purge_timeout' ] = 3 ;
2013-08-02 20:52:58 -04:00
// Additional mod.php?/ pages. Look in inc/mod/pages.php for help.
// $config['mod']['custom_pages']['/something/(\d+)'] = function($id) {
// global $config;
// if (!hasPermission($config['mod']['something']))
// error($config['error']['noaccess']);
// // ...
// };
2014-04-30 11:24:11 -04:00
// You can also enable themes (like ukko) in mod panel like this:
// require_once("templates/themes/ukko/theme.php");
//
// $config['mod']['custom_pages']['/\*/'] = function() {
// global $mod;
//
// $ukko = new ukko();
// $ukko->settings = array();
// $ukko->settings['uri'] = '*';
// $ukko->settings['title'] = 'derp';
// $ukko->settings['subtitle'] = 'derpity';
// $ukko->settings['thread_limit'] = 15;
// $ukko->settings['exclude'] = '';
//
// echo $ukko->build($mod);
// };
2013-08-03 05:21:02 -04:00
// Example: Add links to dashboard (will all be in a new "Other" category).
2013-07-22 18:30:45 -04:00
// $config['mod']['dashboard_links']['Something'] = '?/something';
2013-08-02 20:52:58 -04:00
// Remote servers. I'm not even sure if this code works anymore. It might. Haven't tried it in a while.
// $config['remote']['static'] = array(
// 'host' => 'static.example.org',
// 'auth' => array(
// 'method' => 'plain',
// 'username' => 'username',
// 'password' => 'password!123'
// ),
// 'type' => 'scp'
// );
// Regex for board URIs. Don't add "`" character or any Unicode that MySQL can't handle. 58 characters
// is the absolute maximum, because MySQL cannot handle table names greater than 64 characters.
2013-07-31 02:08:55 -04:00
$config [ 'board_regex' ] = '[0-9a-zA-Z$_\x{0080}-\x{FFFF}]{1,58}' ;
2013-08-02 20:52:58 -04:00
2014-01-09 12:24:53 -05:00
// Youtube.js embed HTML code
$config [ 'youtube_js_html' ] = '<div class="video-container" data-video="$2">' .
'<a href="$0" target="_blank" class="file">' .
'<img style="width:360px;height:270px;" src="//img.youtube.com/vi/$2/0.jpg" class="post-image"/>' .
'</a></div>' ;