config['system']['baseurl'] = 'https://myredsite.example'; $a->config['system']['sitename'] = "Hubzilla"; $a->config['system']['location_hash'] = 'if the auto install failed, put a unique random string here'; // 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. // In order to perform system administration via the admin panel, admin_email // must precisely match the email address of the person logged in. $a->config['system']['register_policy'] = REGISTER_OPEN; $a->config['system']['register_text'] = ''; $a->config['system']['admin_email'] = ''; // Location of PHP command line processor $a->config['system']['php_path'] = 'php'; // Configure how we communicate with directory servers. // DIRECTORY_MODE_NORMAL = directory client, we will find a directory (all of your member's queries will be directed elsewhere) // DIRECTORY_MODE_SECONDARY = caching directory or mirror (keeps in sync with realm primary [adds significant cron execution time]) // DIRECTORY_MODE_PRIMARY = main directory server (you do not want this unless you are operating your own realm. one per realm.) // DIRECTORY_MODE_STANDALONE = "off the grid" or private directory services (only local site members in directory) $a->config['system']['directory_mode'] = DIRECTORY_MODE_NORMAL; // PHP error logging setup // Before doing this ensure that the webserver has permission // to create and write to php.out in the top level Red directory, // or change the name (below) to a file/path where this is allowed. // Uncomment the following 4 lines to turn on PHP error logging. //error_reporting(E_ERROR | E_WARNING | E_PARSE ); //ini_set('error_log','php.out'); //ini_set('log_errors','1'); //ini_set('display_errors', '0');