X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=htconfig.php;h=f98e9efc067a058f9bd149d6523584c415c6bea4;hb=b580c238445100e95b2b43343a82d0e5f7a14630;hp=fe6c0d82ee4562275a88beb8b301870b5c0b4543;hpb=01c2eacd4624a3305c9a4a68ce3aa57f23abf11c;p=friendica.git diff --git a/htconfig.php b/htconfig.php index fe6c0d82ee..f98e9efc06 100644 --- a/htconfig.php +++ b/htconfig.php @@ -16,6 +16,11 @@ $db_user = 'mysqlusername'; $db_pass = 'mysqlpassword'; $db_data = 'mysqldatabasename'; +// 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"; + // 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. @@ -61,7 +66,7 @@ $a->config['system']['allowed_themes'] = 'quattro,vier,duepuntozero'; // default system theme -$a->config['system']['theme'] = 'duepuntozero'; +$a->config['system']['theme'] = 'vier'; // By default allow pseudonyms @@ -73,3 +78,6 @@ $a->config['system']['no_regfullname'] = true; // Location of the global directory $a->config['system']['directory'] = 'http://dir.friendi.ca'; + +// Allowed protocols in link URLs; HTTP protocols always are accepted +$a->config['system']['allowed_link_protocols'] = array('ftp', 'ftps', 'mailto', 'cid', 'gopher');