3 // If automatic system installation fails:
5 // Copy or rename this file to .htconfig.php
7 // Why .htconfig.php? Because it contains sensitive information which could
8 // give somebody complete control of your database. Apache's default
9 // configuration denies access to and refuses to serve any file beginning
12 // Then set the following for your MySQL installation
14 $db_host = 'your.mysqlhost.com';
15 $db_user = 'mysqlusername';
16 $db_pass = 'mysqlpassword';
17 $db_data = 'mysqldatabasename';
19 // Set the database connection charset to UTF8.
20 // Changing this value will likely corrupt the special characters.
21 // You have been warned.
22 $a->config['system']['db_charset'] = "utf8mb4";
24 // Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
25 // It can be changed later and only applies to timestamps for anonymous viewers.
27 $default_timezone = 'America/Los_Angeles';
29 // What is your site name?
31 $a->config['sitename'] = "Friendica Social Network";
33 // Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.
34 // Be certain to create your own personal account before setting
35 // REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on
36 // the registration page. REGISTER_APPROVE requires you set 'admin_email'
37 // to the email address of an already registered person who can authorise
38 // and/or approve/deny the request.
40 // In order to perform system administration via the admin panel, admin_email
41 // must precisely match the email address of the person logged in.
43 $a->config['register_policy'] = REGISTER_OPEN;
44 $a->config['register_text'] = '';
45 $a->config['admin_email'] = '';
47 // Maximum size of an imported message, 0 is unlimited
49 $a->config['max_import_size'] = 200000;
51 // maximum size of uploaded photos
53 $a->config['system']['maximagesize'] = 800000;
55 // Location of PHP command line processor
57 $a->config['php_path'] = 'php';
59 // PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts
61 $a->config['system']['huburl'] = '[internal]';
63 // allowed themes (change this from admin panel after installation)
65 $a->config['system']['allowed_themes'] = 'quattro,vier,duepuntozero';
67 // default system theme
69 $a->config['system']['theme'] = 'duepuntozero';
72 // By default allow pseudonyms
74 $a->config['system']['no_regfullname'] = true;
76 //Deny public access to the local directory
77 //$a->config['system']['block_local_dir'] = false;
79 // Location of the global directory
80 $a->config['system']['directory'] = 'http://dir.friendi.ca';