X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=htconfig.php;h=0c365579cbc37d4019a2ef3cbf2d3ed51c740359;hb=b91494d22ec1bcf7724f36c1df90d83178f6e47f;hp=ef3855978accd1807c5202fce8130ab23f2074f0;hpb=21f0cd206d1f533af8754542821f18c82e5c8df5;p=friendica.git diff --git a/htconfig.php b/htconfig.php index ef3855978a..0c365579cb 100644 --- a/htconfig.php +++ b/htconfig.php @@ -17,13 +17,25 @@ $default_timezone = 'Australia/Sydney'; $a->config['sitename'] = "DFRN developer"; -// At the present time you can have REGISTER_OPEN -// or REGISTER_CLOSED. But register your personal account -// first before you close it. +// 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. $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; -$a->config['max_import_size'] = 10000; \ No newline at end of file +// Location of PHP command line processor + +$a->config['php_path'] = 'php'; + +// Location of global directory submission page. + +$a->config['system']['directory_submit_url'] = 'http://dir.dfrn.org/submit';