Array(), 'cache' => Array(), 'cookies' => Array(), 'error' => Array(), 'dir' => Array(), 'mod' => Array(), 'spam' => Array(), 'flood_filters' => Array(), 'wordfilters' => Array(), 'custom_capcode' => Array(), 'custom_tripcode' => Array(), 'dnsbl' => Array(), 'dnsbl_exceptions' => Array(), 'remote' => Array(), 'allowed_ext' => Array(), 'allowed_ext_files' => Array(), 'file_icons' => Array() ); /* * ======================= * General/misc settings * ======================= */ // Blotter -- the simple version. //$config['blotter'] = 'This is an important announcement!'; // Automatically check if a newer version of Tinyboard is available when an administrator logs in $config['check_updates'] = true; // How often to check for updates $config['check_updates_time'] = 43200; // 12 hours // Shows some extra information at the bottom of pages. Good for debugging development. // Also experimental. $config['debug'] = false; // For development purposes. Turns 'display_errors' on. Not recommended for production. $config['verbose_errors'] = true; // Directory where temporary files will be created. Not really used much yet except for some experimental stuff. $config['tmp'] = '/tmp'; // The HTTP status code to use when redirecting. // Should be 3xx (redirection). http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html // "302" is strongly recommended. (This shouldn't even be configurable... It's not like it's going to change or anything.) $config['redirect_http'] = 302; // A small 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. $config['has_installed'] = '.installed'; // Use syslog() for logging all error messages and unauthorized login attempts. $config['syslog'] = false; // 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; /* * ==================== * Database settings * ==================== */ // SQL driver ("mysql", "pgsql", "sqlite", "dblib", etc) // http://www.php.net/manual/en/pdo.drivers.php $config['db']['type'] = 'mysql'; // Hostname or IP address $config['db']['server'] = 'localhost'; // Login $config['db']['user'] = ''; $config['db']['password'] = ''; // Tinyboard database $config['db']['database'] = ''; // Use a persistent connection (experimental) $config['db']['persistent'] = false; // Anything more to add to the DSN string (eg. port=xxx;foo=bar) $config['db']['dsn'] = ''; // Timeout duration in seconds (not all drivers support this) $config['db']['timeout'] = 5; /* * ==================== * Cache settings * ==================== */ $config['cache']['enabled'] = false; // $config['cache']['enabled'] = 'memcached'; // $config['cache']['enabled'] = 'apc'; // $config['cache']['enabled'] = 'xcache'; // Timeout for cached objects such as posts and HTML $config['cache']['timeout'] = 43200; // 12 hours // Memcached servers to use - http://www.php.net/manual/en/memcached.addservers.php $config['cache']['memcached'] = Array( Array('localhost', 11211) ); /* * ==================== * Cookie settings * ==================== */ // The name of the session cookie (PHP's $_SESSION) $config['cookies']['session']= 'imgboard'; // Used to safely determine when the user was first seen, to prevent floods. Contains a UNIX timestamp. $config['cookies']['time'] = 'arrived'; // Contains an MD5 hash of $config['cookies']['time'] for verification. $config['cookies']['hash'] = 'hash'; // Used for moderation login $config['cookies']['mod'] = 'mod'; // Used for communicating with Javascript; telling it when posts were successful. // Rebuild Javascript file after changing this value or it won't work. $config['cookies']['js'] = 'serv'; // 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. // $config['cookies']['path'] = '/'; // Where to set the 'path' parameter to $config['cookies']['path'] when creating cookies. Recommended. $config['cookies']['jail'] = true; // How long should the cookies last (in seconds) $config['cookies']['expire']= 15778463; //6 months // Make this something long and random for security $config['cookies']['salt'] = 'abcdefghijklmnopqrstuvwxyz09123456789!@#$%^&*()'; // How long should moderators should remain logged in (0=browser session) (in seconds) $config['mod']['expire'] = 15778463; //6 months // Used to salt secure tripcodes (##trip) and poster IDs (if enabled) $config['secure_trip_salt'] = ')(*&^%$#@!98765432190zyxwvutsrqponmlkjihgfedcba'; // How many seconds before you can post, after the first visit // Does not currently work due to technical limitations; disregard for now $config['lurktime'] = 30; /* * ==================== * Flood/spam settings * ==================== */ // How many seconds between each post $config['flood_time'] = 10; // How many seconds between each post with exactly the same content and same IP $config['flood_time_ip'] = 120; // Same as above but different IP address $config['flood_time_same'] = 30; // DNS blacklists (DNSBL) http://www.dnsbl.info/dnsbl-list.php $config['dnsbl'][] = 'tor.dnsbl.sectoor.de'; // Tor exit nodes //$config['dnsbl'][] = 'dnsbl.sorbs.net'; // A better way to check for Tor exit nodes (https://www.torproject.org/projects/tordnsel.html.en): // server-port.reverse-server-ip.ip-port.exitlist.torproject.org //$config['dnsbl'][] = $_SERVER['PORT'] . '.' . '4.3.2.1' . '.ip-port.exitlist.torproject.org'; // Skip checking certain IP addresses against blacklists (for troubleshooting or whatever) $config['dnsbl_exceptions'][] = '127.0.0.1'; // Spam filter $config['spam']['hidden_inputs_min'] = 4; $config['spam']['hidden_inputs_max'] = 12; // These are fields used to confuse the bots. Make sure they aren't actually used by Tinyboard, or it won't work. $config['spam']['hidden_input_names'] = Array( 'user', 'username', 'login', 'search', 'q', 'url', 'firstname', 'lastname', 'text', 'message' ); // Always update this when adding new valid fields to the post form, or EVERYTHING WILL BE DETECTED AS SPAM! $config['spam']['valid_inputs'] = Array( 'hash', 'board', 'thread', 'mod', 'name', 'email', 'subject', 'post', 'body', 'password', 'sticky', 'lock', 'raw', 'embed', 'recaptcha_challenge_field', 'recaptcha_response_field', 'spoiler' ); // Custom flood filters. Detect flood attacks and reject new posts if there's a positive match. // See http://tinyboard.org/wiki/index.php?title=Flood_filters for more information. //$config['flood_filters'][] = Array( // 'condition' => Array( // // 100 posts in the past 5 minutes (~20 p/m) // 'posts_in_past_x_minutes' => Array(100, 5) // ), // // Don't allow the user to post // 'action' => 'reject', // // Display this message // 'message' => 'Your post has been rejected on the suspicion of a flood attack on this board.' //); // Another filter //$config['flood_filters'][] = Array( // 'condition' => Array( // // 10 new empty threads in the past 2 minutes // 'threads_with_no_replies_in_past_x_minutes' => Array(10, 2), // // Allow replies, but not new threads (ie. reject topics only). // 'OP' => true // ), // 'action' => 'reject', // 'message' => 'Your post has been rejected on the suspicion of a flood attack on this board (too many new threads); post a reply instead.' //); // Enable reCaptcha to make spam even harder $config['recaptcha'] = false; // Public and private key pair from https://www.google.com/recaptcha/admin/create $config['recaptcha_public'] = '6LcXTcUSAAAAAKBxyFWIt2SO8jwx4W7wcSMRoN3f'; $config['recaptcha_private'] = '6LcXTcUSAAAAAOGVbVdhmEM1_SyRF4xTKe8jbzf_'; /* * ==================== * Post settings * ==================== */ // Do you need a body for your reply posts? $config['force_body'] = false; // Do you need a body for new threads? $config['force_body_op'] = true; // Strip superfluous new lines at the end of a post $config['strip_superfluous_returns'] = true; // Max body length $config['max_body'] = 1800; // Amount of post lines to show on the index page $config['body_truncate'] = 15; // Amount of characters to show on the index page $config['body_truncate_char'] = 2500; // Typically spambots try to post a lot of links. Refuse a post with X standalone links? $config['max_links'] = 20; // Maximum number of cites per post (protects against abuse) $config['max_cites'] = 45; // Maximum number of cross-board links/cites per post $config['max_cross'] = $config['max_cites']; // Track post citations (>>XX). Rebuilds posts after a cited post is deleted, removing broken links. // A little more database load. $config['track_cites'] = true; // Maximum filename length (will be truncated) $config['max_filename_len'] = 255; // Maximum filename length to display (the rest can be viewed upon mouseover) $config['max_filename_display'] = 30; // How long before you can delete a post after posting, in seconds. $config['delete_time'] = 10; // Reply limit (stops bumping thread when this is reached) $config['reply_limit'] = 250; // Strip repeating characters when making hashes $config['robot_enable'] = false; $config['robot_strip_repeating'] = true; // Enable mutes // Tinyboard uses ROBOT9000's original 2^x implementation $config['robot_mute'] = true; // How many mutes x hours ago to include in the algorithm $config['robot_mute_hour'] = 336; // 2 weeks // If you want to alter the algorithm a bit. Default value is 2. n^x $config['robot_mute_multiplier'] = 2; $config['robot_mute_descritpion'] = 'You have been muted for unoriginal content.'; // Automatically convert things like "..." to Unicode characters ("…") $config['auto_unicode'] = true; // Use some Wiki-like syntax (''em'', '''strong''', ==Heading==, etc) $config['wiki_markup'] = true; // Whether to turn URLs into functional links $config['markup_urls'] = true; // Wordfilters are used to automatically replace certain words/phrases with something else. // For a normal string replacement: // $config['wordfilters'][] = Array('cat', 'dog'); // Advanced raplcement (regular expressions): // $config['wordfilters'][] = Array('/cat/', 'dog', true); // 'true' means it's a regular expression // Always act as if they had typed "noko" in the email field no mattter what $config['always_noko'] = false; // Custom tripcodes. The below example makes a tripcode // of "#test123" evaluate to "!HelloWorld" // $config['custom_tripcode']['#test123'] = '!HelloWorld'; // $config['custom_tripcode']['##securetrip'] = '!!somethingelse'; // Optional spoiler images $config['spoiler_images'] = false; // With the following, you can disable certain superfluous fields or enable "forced anonymous". // When true, all names will be set to $config['anonymous']. $config['field_disable_name'] = false; // When true, no email will be able to be set. $config['field_disable_email'] = false; // When true, a blank password will be used for files (not usable for deletion). $config['field_disable_password'] = false; /* * ==================== * Image settings * ==================== */ // For resizing, max values $config['thumb_width'] = 255; $config['thumb_height'] = 255; // Thumbnail extension, empty for inherited (png recommended) $config['thumb_ext'] = 'png'; // Use Imagick instead of GD (some further config options below are ignored if set) $config['imagick'] = false; // Regular expression to check for IE MIME type detection XSS exploit. To disable, comment the line out // https://github.com/savetheinternet/Tinyboard/issues/20 $config['ie_mime_type_detection'] = '/<(?:body|head|html|img|plaintext|pre|script|table|title|a href|channel|scriptlet)/i'; // Allowed image file extensions $config['allowed_ext'][] = 'jpg'; $config['allowed_ext'][] = 'jpeg'; $config['allowed_ext'][] = 'bmp'; $config['allowed_ext'][] = 'gif'; $config['allowed_ext'][] = 'png'; // $config['allowed_ext'][] = 'svg'; // Allowed additional file extensions (not images; downloadable files) // $config['allowed_ext_files'][] = 'txt'; // $config['allowed_ext_files'][] = 'zip'; // An alternative function for generating a filename, instead of the default UNIX timestamp. // http://tinyboard.org/wiki/index.php?title=Filenames // $config['filename_func'] = 'some_function_you_have_created'; // Non-image file icons $config['file_icons']['default'] = 'file.png'; $config['file_icons']['zip'] = 'zip.png'; // Thumbnail to use for the downloadable files (not images) $config['file_thumb'] = 'static/%s'; // Thumbnail to use for spoiler images $config['spoiler_image'] = 'static/spoiler.png'; // Thumbnail quality (compression level), from 0 to 9 $config['thumb_quality'] = 7; // 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 $config['minimum_copy_resize'] = true; // Store image hash in the database for r9k-like boards implementation soon // Function name for hashing // sha1_file, md5_file, etc. You can also define your own similar function. $config['file_hash'] = 'sha1_file'; // Maximum image upload size in bytes $config['max_filesize'] = 10*1024*1024; // 10MB // Maximum image dimensions $config['max_width'] = 10000; $config['max_height'] = $config['max_width']; // 1:1 // Reject dupliate image uploads $config['image_reject_repost'] = true; // Display the aspect ratio in a post's file info $config['show_ratio'] = false; // Display the file's original filename $config['show_filename']= true; /** Redraw the image using GD functions to strip any excess data (commonly ZIP archives) WARNING: Currently strips animated GIFs too :( Note: Currently not implemented anymore. Will be added back at a later date. **/ $config['redraw_image'] = false; // Temporary fix for the animation-stripping bug $config['redraw_gifs'] = false; // Redrawing configuration $config['jpeg_quality'] = 100; /* * ==================== * Board settings * ==================== */ // Maximum amount of threads to display on a given page. $config['threads_per_page'] = 10; // Maximum number of pages. Content past the last page is automatically purged. $config['max_pages'] = 10; // Replies to show per thread on the board index page. $config['threads_preview'] = 5; // Same as above, but for stickied threads. $config['threads_preview_sticky'] = 1; // Name of the boards. Usually '/%s/' (/b/, /mu/, etc) // $config['board_abbreviation'] - BOARD_TITLE $config['board_abbreviation'] = '/%s/'; // The default name (ie. Anonymous) $config['anonymous'] = 'Anonymous'; // How many reports you can create in the same request. $config['report_limit'] = 3; /* * ==================== * Display settings * ==================== */ // Locale (en, ru_RU) $config['locale'] = 'en'; // Timezone $config['timezone'] = 'America/Los_Angeles'; // Inline expanding of images with Javascript $config['inline_expanding'] = true; // The format string passed to strftime() for post times // http://www.php.net/manual/en/function.strftime.php $config['post_date'] = '%m/%d/%y (%a) %H:%M:%S'; // Same as above, but used for "you are banned' pages. $config['ban_date'] = '%A %e %B, %Y'; // The names on the post buttons. (On most imageboards, these are both "Post") $config['button_newtopic'] = 'New Topic'; $config['button_reply'] = 'New Reply'; // Assign each poster in a thread a unique ID, shown by "ID: {id}" before the post number. $config['poster_ids'] = false; // Number of characters in the poster ID (maximum is 40) $config['poster_id_length'] = 5; // Characters used to generate a random password (with Javascript) $config['genpassword_chars'] = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+'; // Optional banner at the top of every page. // $config['url_banner'] = '/banner.php'; // 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. // $config['banner_width'] = 300; // $config['banner_height'] = 100; // Custom stylesheets available. The prefix for each stylesheet URI is defined below. $config['stylesheets'] = Array( // Stylesheet name => URI 'Yotsuba B' => 'default.css', 'Yotsuba' => 'yotsuba.css' ); // $config['stylesheets']['Futaba'] = 'futaba.css'; // The prefix for each stylesheet URI. Defaults to $config['root']/stylesheets/ // $config['uri_stylesheets'] = 'http://static.example.org/stylesheets/'; // The default stylesheet to use $config['default_stylesheet'] = Array('Yotsuba B', $config['stylesheets']['Yotsuba B']); // Boardlinks // You can group, order and place the boardlist at the top of every page, using the following template. //$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/') //); // Categories // Required for the Categories theme. Array of the names of board groups in order, from $config['boards']. //$config['categories'] = Array('groupname', 'name', 'anothername', 'kangaroos'); // Custom_categories // Optional for the Categories theme. Array of name => (title, url) groups for categories with non-board links. //$config['custom_categories'] = Array( 'Links' => // Array('Tinyboard' => 'http://tinyboard.org', // 'AnotherName' => 'url') //); // Automatically remove unnecessary whitespace when compiling HTML files from templates. $config['minify_html'] = false; /* * ==================== * Video embedding * ==================== */ // Enable embedding (see below) $config['enable_embedding'] = false; // Custom embedding (YouTube, vimeo, etc.) // It's very important that you match the full string (with ^ and $) or things will not work correctly. $config['embedding'] = Array( Array( '/^https?:\/\/(\w+\.)?youtube\.com\/watch\?v=([a-zA-Z0-9\-_]{10,11})(&.+)?$/i', '' ), Array( '/^https?:\/\/(\w+\.)?vimeo\.com\/(\d{2,10})(\?.+)?$/i', '' ), Array( '/^https?:\/\/(\w+\.)?dailymotion\.com\/video\/([a-zA-Z0-9]{2,10})(_.+)?$/i', '' ), Array( '/^https?:\/\/(\w+\.)?metacafe\.com\/watch\/(\d+)\/([a-zA-Z0-9_\-.]+)\/(\?.+)?$/i', '
' ), Array( '/^https?:\/\/video\.google\.com\/videoplay\?docid=(\d+)([](.+)?)?$/i', '' ) ); // Embedding width and height $config['embed_width'] = 300; $config['embed_height'] = 246; /* * ==================== * Error messages * ==================== */ // Error messages $config['error']['lurk'] = 'Lurk some more before posting.'; $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.'; $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