'password', 'username2' => 'password2' ); /** * URL shortening method: 36 or 62. * * 36: generates case insentitive lowercase keywords (ie: 13jkm) * 62: generate case sensitive keywords (ie: 13jKm or 13JKm) * Stick to one setting, don't change after you've created links as it will change all your short URLs! * Base 36 should be picked. Use 62 only if you understand what it implies. * Using base 62 means you *need* PHP extension BCCOMP */ define('YOURLS_URL_CONVERT', 36); /** * Reserved keywords (so that generated URLs won't match them) * Define here negative, unwanted or potentially misleading keywords. */ $yourls_reserved_URL = array( 'porn', 'faggot', 'sex', 'nigger', 'fuck', 'cunt', 'dick', 'gay', ); /******************** DO NOT EDIT ANYTHING ELSE ********************/ // Include everything except auth functions require_once (dirname(__FILE__).'/functions.php'); require_once (dirname(__FILE__).'/functions-baseconvert.php'); require_once (dirname(__FILE__).'/class-mysql.php');