'http://soundcloud.com/oembed?format=json&url=TINYIBEMBED', 'Vimeo' => 'http://vimeo.com/api/oembed.json?url=TINYIBEMBED', 'YouTube' => 'http://www.youtube.com/oembed?url=TINYIBEMBED&format=json'); // Tripcode seed - Must not change once set! define('TINYIB_TRIPSEED', ''); // Enter some random text (used when generating secure tripcodes) // CAPTCHA // The following only apply when TINYIB_CAPTCHA is set to recaptcha // For API keys visit https://www.google.com/recaptcha define('TINYIB_RECAPTCHA_SITE', ''); // Site key define('TINYIB_RECAPTCHA_SECRET', '');// Secret key // Database // Recommended database modes from best to worst: // pdo, mysqli, mysql, sqlite, flatfile (flatfile is only useful if you need portability or lack any kind of database) define('TINYIB_DBMODE', 'flatfile'); // Mode define('TINYIB_DBMIGRATE', false); // Enable database migration tool (see README for instructions) define('TINYIB_DBBANS', 'bans'); // Bans table name (use the same bans table across boards for global bans) define('TINYIB_DBPOSTS', TINYIB_BOARD . '_posts'); // Posts table name // Database configuration - MySQL // The following only apply when TINYIB_DBMODE is set to mysql, mysqli or pdo with default (blank) TINYIB_DBDSN define('TINYIB_DBHOST', 'localhost'); // Hostname define('TINYIB_DBPORT', 3306); // Port (set to 0 if you are using a UNIX socket as the host) define('TINYIB_DBUSERNAME', ''); // Username define('TINYIB_DBPASSWORD', ''); // Password define('TINYIB_DBNAME', ''); // Database // Database configuration - PDO // The following only apply when TINYIB_DBMODE is set to pdo (see README for instructions) define('TINYIB_DBDRIVER', 'mysql'); // PDO driver to use (mysql / sqlite / pgsql / etc.) define('TINYIB_DBDSN', ''); // Enter a custom DSN to override all of the connection/driver settings above (see README for instructions) // When changing this, you should still set TINYIB_DBDRIVER appropriately. // If you're using PDO with a MySQL database, you should leave this blank.