"); DEFINE('NOW', time()); date_default_timezone_set('Europe/Berlin'); /* make the path easier to read */ $path_fragments = (parse_url(str_replace(dirname($_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), PHP_URL_PATH)); $path = explode('/', trim($path_fragments, '/')); if(mb_strlen($path[0]) == 0) $path = array(); // (mostly) user settings $config = array( 'url' => 'http'.(!empty($_SERVER['HTTPS']) ? 's' : '').'://'.$_SERVER['SERVER_NAME'].dirname($_SERVER['SCRIPT_NAME']), 'path' => $path, 'language' => 'en', 'max_characters' => 280, 'posts_per_page' => 10, 'microblog_account' => '', // fill in a @username if you like 'admin_user' => 'admin', 'admin_pass' => 'dove-life-bird-lust', 'app_token' => '3e83b13d99bf0de6c6bde5ac5ca4ae687a3d46db', // random secret used as auth with XMLRPC 'cookie_life' => 60*60*24*7*4, // cookie life in seconds 'ping' => true, // enable automatic pinging of the micro.blog service 'crosspost_to_twitter' => false, // set this to true to automatically crosspost to a twitter account (requires app credentials, see below) 'twitter' => array( // get your tokens over at https://dev.twitter.com/apps 'oauth_access_token' => '', 'oauth_access_token_secret' => '', 'consumer_key' => '', 'consumer_secret' => '' ) ); $config['xmlrpc'] = function_exists('xmlrpc_server_create'); $config['local_time_offset'] = date('P'); // load functions require_once(ROOT.DS.'database.php'); require_once(ROOT.DS.'functions.php'); require_once(ROOT.DS.'lib_autolink.php');