aboutsummaryrefslogtreecommitdiff
path: root/config-dist.php
blob: 2036e72b56706a2f0cc00b76ac11e090193d7c19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);

DEFINE('ROOT', __DIR__);
DEFINE('DS', DIRECTORY_SEPARATOR);
DEFINE('NL', "\n");
DEFINE('BR', "<br />");
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' => ''
	),
	'show_edits' => true, // displays the modification time of posts
);

$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');