-
Notifications
You must be signed in to change notification settings - Fork 1
/
boot.php
40 lines (28 loc) · 1.02 KB
/
boot.php
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
<?php
# Directory where the Sprinkles code, and the caches, reside.
$sprinkles_dir = dirname(__FILE__);
$max_logo_size = 65535;
# page limits
$submit_suggestions = 3;
$helpstart_topic_count = 5;
$discuss_page_size = 10;
$related_topics_count = 4;
$max_top_topic_tags = 5;
$topic_page_size = 5; # TBD: regularize these names
$oauth_request_timeout = 10; # seconds (accepts floating point)
$http_cache_timeout = 3600; # seconds (must be whole number)
# $preview_after_log determines whether the user should have a chance to
# preview a topic for submission, after being sent to the Get Satisfaction
# authorization page and before actually posting the topic.
$preview_after_login = false;
// ====================================
// = Defaults, override in config.php =
// ====================================
$api_root = "http://api.getsatisfaction.com/";
$sfn_root = "http://getsatisfaction.com/";
$admins = array();
$mysql_username = 'root';
$mysql_password = '';
$mysql_db = 'sprinkles';
$mysql_connect_params = '127.0.0.1:3306';
?>