]> git.mxchange.org Git - friendica.git/blob - htconfig.php
lots of formatting, bug fixes on profile updates, i18n
[friendica.git] / htconfig.php
1 <?php
2
3 // Set the following for your MySQL installation
4 // Copy or rename this file to .htconfig.php
5
6 $db_host = 'your.mysqlhost.com';
7 $db_user = 'mysqlusername';
8 $db_pass = 'mysqlpassword';
9 $db_data = 'mysqldatabasename';
10
11 // Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
12 // It can be changed later and only applies to timestamps for anonymous viewers.
13
14 $default_timezone = 'Australia/Sydney';
15
16 // What is your site name?
17
18 $a->config['sitename'] = "DFRN developer";
19
20 // At the present time you can have REGISTER_OPEN
21 // or REGISTER_CLOSED. But register your personal account 
22 // first before you close it.
23
24 $a->config['register_policy'] = REGISTER_OPEN;
25
26
27 // Maximum size of an imported message, 0 is unlimited.
28
29 $a->config['max_import_size'] = 10000;