2010-07-11 06:35:06 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-15 16:29:02 -04:00
|
|
|
// If automatic system installation fails:
|
2010-10-07 07:08:03 -04:00
|
|
|
|
2010-07-11 06:35:06 -04:00
|
|
|
// Copy or rename this file to .htconfig.php
|
|
|
|
|
2010-10-07 07:08:03 -04:00
|
|
|
// Why .htconfig.php? Because it contains sensitive information which could
|
2015-09-15 16:29:02 -04:00
|
|
|
// give somebody complete control of your database. Apache's default
|
|
|
|
// configuration denies access to and refuses to serve any file beginning
|
2010-10-07 07:08:03 -04:00
|
|
|
// with .ht
|
|
|
|
|
|
|
|
// Then set the following for your MySQL installation
|
|
|
|
|
2010-07-11 06:35:06 -04:00
|
|
|
$db_host = 'your.mysqlhost.com';
|
|
|
|
$db_user = 'mysqlusername';
|
|
|
|
$db_pass = 'mysqlpassword';
|
|
|
|
$db_data = 'mysqldatabasename';
|
|
|
|
|
2016-08-31 23:50:41 -04:00
|
|
|
// Set the database connection charset to UTF8.
|
|
|
|
// Changing this value will likely corrupt the special characters.
|
|
|
|
// You have been warned.
|
|
|
|
$a->config['system']['db_charset'] = "utf8mb4";
|
|
|
|
|
2010-07-11 06:35:06 -04:00
|
|
|
// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
|
|
|
|
// It can be changed later and only applies to timestamps for anonymous viewers.
|
|
|
|
|
2010-10-07 07:08:03 -04:00
|
|
|
$default_timezone = 'America/Los_Angeles';
|
2010-07-11 06:35:06 -04:00
|
|
|
|
|
|
|
// What is your site name?
|
|
|
|
|
2012-02-19 14:11:18 -05:00
|
|
|
$a->config['sitename'] = "Friendica Social Network";
|
2010-07-11 06:35:06 -04:00
|
|
|
|
2010-07-29 04:22:00 -04:00
|
|
|
// Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.
|
2015-09-15 16:29:02 -04:00
|
|
|
// Be certain to create your own personal account before setting
|
|
|
|
// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on
|
2010-07-29 04:22:00 -04:00
|
|
|
// the registration page. REGISTER_APPROVE requires you set 'admin_email'
|
|
|
|
// to the email address of an already registered person who can authorise
|
2015-09-15 16:29:02 -04:00
|
|
|
// and/or approve/deny the request.
|
2010-07-11 06:35:06 -04:00
|
|
|
|
2012-02-23 23:29:09 -05:00
|
|
|
// In order to perform system administration via the admin panel, admin_email
|
|
|
|
// must precisely match the email address of the person logged in.
|
|
|
|
|
2010-07-11 06:35:06 -04:00
|
|
|
$a->config['register_policy'] = REGISTER_OPEN;
|
2010-07-29 04:22:00 -04:00
|
|
|
$a->config['register_text'] = '';
|
|
|
|
$a->config['admin_email'] = '';
|
2010-07-18 23:49:10 -04:00
|
|
|
|
2010-11-09 21:31:43 -05:00
|
|
|
// Maximum size of an imported message, 0 is unlimited
|
2010-07-18 23:49:10 -04:00
|
|
|
|
2011-05-04 05:20:44 -04:00
|
|
|
$a->config['max_import_size'] = 200000;
|
2010-08-19 07:59:31 -04:00
|
|
|
|
2010-11-09 21:31:43 -05:00
|
|
|
// maximum size of uploaded photos
|
|
|
|
|
|
|
|
$a->config['system']['maximagesize'] = 800000;
|
|
|
|
|
2010-08-19 07:59:31 -04:00
|
|
|
// Location of PHP command line processor
|
|
|
|
|
|
|
|
$a->config['php_path'] = 'php';
|
|
|
|
|
2010-10-01 08:46:10 -04:00
|
|
|
// PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts
|
|
|
|
|
2014-09-20 06:08:10 -04:00
|
|
|
$a->config['system']['huburl'] = '[internal]';
|
2010-10-01 08:46:10 -04:00
|
|
|
|
2012-02-23 23:29:09 -05:00
|
|
|
// allowed themes (change this from admin panel after installation)
|
|
|
|
|
2016-01-11 02:57:51 -05:00
|
|
|
$a->config['system']['allowed_themes'] = 'quattro,vier,duepuntozero';
|
2012-02-23 23:29:09 -05:00
|
|
|
|
2011-02-06 18:50:50 -05:00
|
|
|
// default system theme
|
|
|
|
|
2016-12-10 01:04:39 -05:00
|
|
|
$a->config['system']['theme'] = 'vier';
|
2011-02-06 18:50:50 -05:00
|
|
|
|
2011-01-27 21:45:19 -05:00
|
|
|
|
2012-01-25 03:30:36 -05:00
|
|
|
// By default allow pseudonyms
|
|
|
|
|
|
|
|
$a->config['system']['no_regfullname'] = true;
|
2012-03-11 14:50:51 -04:00
|
|
|
|
2015-05-28 13:54:23 -04:00
|
|
|
//Deny public access to the local directory
|
|
|
|
//$a->config['system']['block_local_dir'] = false;
|
|
|
|
|
2015-09-15 16:29:02 -04:00
|
|
|
// Location of the global directory
|
2015-08-23 14:29:45 -04:00
|
|
|
$a->config['system']['directory'] = 'http://dir.friendi.ca';
|
2016-12-03 14:19:57 -05:00
|
|
|
|
|
|
|
// Allowed protocols in link URLs; HTTP protocols always are accepted
|
2016-12-10 01:04:39 -05:00
|
|
|
$a->config['system']['allowed_link_protocols'] = array('ftp', 'ftps', 'mailto', 'cid', 'gopher');
|