X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=htconfig.php;h=8f64899657da644efcbf21f182d2737181189cc5;hb=0a03a710b326dc6c21ade1d769348e67100457c6;hp=e9c2db3507f6cc5b5bcd03646a12f2e5c076e1aa;hpb=c9d8211ae73332b6c4e91d82ba06275b92d7523a;p=friendica.git diff --git a/htconfig.php b/htconfig.php index e9c2db3507..8f64899657 100644 --- a/htconfig.php +++ b/htconfig.php @@ -1,8 +1,16 @@ config['sitename'] = "DFRN developer"; +$a->config['sitename'] = "Friendika Social Network"; // Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED. // Be certain to create your own personal account before setting // REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on // the registration page. REGISTER_APPROVE requires you set 'admin_email' // to the email address of an already registered person who can authorise -// and/or approve/deny the request. +// and/or approve/deny the request. $a->config['register_policy'] = REGISTER_OPEN; $a->config['register_text'] = ''; $a->config['admin_email'] = ''; -// Maximum size of an imported message, 0 is unlimited (but our database 'text' element is limited to 65535). +// Maximum size of an imported message, 0 is unlimited + +$a->config['max_import_size'] = 10000; + +// maximum size of uploaded photos + +$a->config['system']['maximagesize'] = 800000; + +// Location of PHP command line processor + +$a->config['php_path'] = 'php'; + +// You shouldn't need to change anything else. +// Location of global directory submission page. + +$a->config['system']['directory_submit_url'] = 'http://dir.friendika.com/submit'; + +// PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts + +$a->config['system']['huburl'] = 'http://pubsubhubbub.appspot.com'; -$a->config['max_import_size'] = 10000; \ No newline at end of file