2010-11-02 06:57:33 -04:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
// Database stuff
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('MY_SERVER', 'localhost', true);
|
|
|
|
|
define('MY_USER', '', true);
|
|
|
|
|
define('MY_PASSWORD', '', true);
|
|
|
|
|
define('MY_DATABASE', '', true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
|
|
|
|
// The name of the session cookie (PHP's $_SESSION)
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('SESS_COOKIE', 'imgboard', true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
|
|
|
|
// Used to safely determine when the user was first seen, to prevent floods.
|
|
|
|
|
// time()
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('TIME_COOKIE', 'arrived', true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
// HASH_COOKIE contains an MD5 hash of TIME_COOKIE+SALT for verification.
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('HASH_COOKIE', 'hash', true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
|
|
|
|
// How long should the cookies last (in seconds)
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('COOKIE_EXPIRE', 15778463, true); //6 months
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('SALT', 'wefaw98YHEWUFuo', true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
|
|
|
|
// How many seconds before you can post, after the first visit
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('LURKTIME', 30, true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
|
|
|
|
// Max body length
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('MAX_BODY', 1800, true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('THREADS_PER_PAGE', 10, true);
|
|
|
|
|
define('MAX_PAGES', 5, true);
|
|
|
|
|
define('THREADS_PREVIEW', 5, true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
|
|
|
|
// Error messages
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('ERROR_LURK', 'Lurk some more before posting.', true);
|
|
|
|
|
define('ERROR_BOT', 'You look like a bot.', true);
|
|
|
|
|
define('ERROR_TOOLONG', 'The %s field was too long.', true);
|
|
|
|
|
define('ERROR_TOOLONGBODY', 'The body was too long.', true);
|
|
|
|
|
define('ERROR_TOOSHORTBODY', 'The body was too short or empty.', true);
|
|
|
|
|
define('ERROR_NOIMAGE', 'You must upload an image.', true);
|
|
|
|
|
define('ERROR_NOMOVE', 'The server failed to handle your upload.', true);
|
|
|
|
|
define('ERROR_FILEEXT', 'Unsupported image format.', true);
|
|
|
|
|
define('ERR_INVALIDIMG','Invalid image.', true);
|
|
|
|
|
define('ERR_FILESIZE', 'Maximum file size: %maxsz% bytes<br>Your file\'s size: %filesz% bytes', true);
|
|
|
|
|
define('ERR_MAXSIZE', 'The file was too big.', true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
|
|
|
|
// For resizing, max values
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('THUMB_WIDTH', 200, true);
|
|
|
|
|
define('THUMB_HEIGHT', 200, true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
2010-11-03 04:44:24 -04:00
|
|
|
|
// Maximum image upload size in bytes
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('MAX_FILESIZE', 10*1024*1024, true); // 10MB
|
2010-11-03 05:07:32 -04:00
|
|
|
|
// Maximum image dimensions
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('MAX_WIDTH', 10000, true);
|
|
|
|
|
define('MAX_HEIGHT', MAX_WIDTH, true);
|
2010-11-03 04:44:24 -04:00
|
|
|
|
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('ALLOW_ZIP', true, true);
|
|
|
|
|
define('ZIP_IMAGE', 'src/zip.png', true);
|
2010-11-04 08:07:50 -04:00
|
|
|
|
|
|
|
|
|
|
2010-11-03 08:37:28 -04:00
|
|
|
|
/**
|
|
|
|
|
Redraw the image using GD functions to strip any excess data (commonly ZIP archives)
|
|
|
|
|
WARNING: Very beta. Currently strips animated GIFs too :(
|
|
|
|
|
**/
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('REDRAW_IMAGE', false, true);
|
2010-11-03 08:37:28 -04:00
|
|
|
|
// Redrawing configuration
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('JPEG_QUALITY', 100, true);
|
|
|
|
|
define('REDRAW_GIF', false, true);
|
2010-11-03 08:37:28 -04:00
|
|
|
|
|
2010-11-03 12:10:47 -04:00
|
|
|
|
// Display the aspect ratio in a post's file info
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('SHOW_RATIO', true, true);
|
2010-11-03 08:37:28 -04:00
|
|
|
|
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('DIR_IMG', 'src/', true);
|
|
|
|
|
define('DIR_THUMB', 'thumb/', true);
|
|
|
|
|
define('DIR_RES', 'res/', true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
2010-11-02 08:05:18 -04:00
|
|
|
|
// The root directory, including the trailing slash, for Tinyboard.
|
|
|
|
|
// examples: '/', '/board/', '/chan/'
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('ROOT', '/', true);
|
|
|
|
|
define('POST_URL', ROOT . 'post.php', true);
|
|
|
|
|
define('FILE_INDEX', 'index.html', true);
|
|
|
|
|
define('FILE_PAGE', '%d.html', true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
|
|
|
|
// Automatically convert things like "..." to Unicode characters ("<22>")
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('AUTO_UNICODE', true, true);
|
2010-11-03 05:44:51 -04:00
|
|
|
|
// Whether to turn URLs into functional links
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('MARKUP_URLS', true, true);
|
|
|
|
|
define('URL_REGEX', '/' . '(https?|ftp):\/\/' . '([\w\-]+\.)+[a-zA-Z]{2,6}' . '(\/([\w\-~\.#\/?=&;:+%]+))?' . '/', true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
|
|
|
|
// Allowed file extensions
|
2010-11-04 09:35:59 -04:00
|
|
|
|
$allowed_ext = Array('jpg', 'jpeg', 'bmp', 'gif', 'png', true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('BUTTON_NEWTOPIC', 'New Topic', true);
|
|
|
|
|
define('BUTTON_REPLY', 'New Reply', true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('ALWAYS_NOKO', false, true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
2010-11-04 09:35:59 -04:00
|
|
|
|
define('URL_MATCH', '/^' . (@$_SERVER['HTTPS']?'https':'http').':\/\/'.$_SERVER['HTTP_HOST'] . '(' . preg_quote(ROOT, '/') . '|' . preg_quote(ROOT, '/') . '' . preg_quote(FILE_INDEX, '/') . '|' . preg_quote(ROOT, '/') . '' . str_replace('%d', '\d+', preg_quote(FILE_PAGE, '/')) . ')$/', true);
|
2010-11-02 06:57:33 -04:00
|
|
|
|
|
2010-11-04 08:07:50 -04:00
|
|
|
|
if(!defined('IS_INSTALLATION')) {
|
2010-11-04 09:35:59 -04:00
|
|
|
|
if(!file_exists(DIR_IMG)) @mkdir(DIR_IMG) or error("Couldn't create " . DIR_IMG . ". Install manually.", true);
|
|
|
|
|
if(!file_exists(DIR_THUMB)) @mkdir(DIR_THUMB) or error("Couldn't create " . DIR_IMG . ". Install manually.", true);
|
|
|
|
|
if(!file_exists(DIR_RES)) @mkdir(DIR_RES) or error("Couldn't create " . DIR_IMG . ". Install manually.", true);
|
2010-11-03 02:56:54 -04:00
|
|
|
|
}
|
2010-11-04 09:35:59 -04:00
|
|
|
|
?>
|