X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=static%2Fdefaults.config.php;h=310d1ea08e77da527e609c0f13992b2ea7f7aa03;hb=87e434ba27aa64258c5851e5a06ccb2b26a08734;hp=b0832d88f35f4bfc6358a5534286744e2e17ef11;hpb=335cd76baf1cf4352e56f779c898118eb9f36ff1;p=friendica.git diff --git a/static/defaults.config.php b/static/defaults.config.php index b0832d88f3..310d1ea08e 100644 --- a/static/defaults.config.php +++ b/static/defaults.config.php @@ -53,15 +53,9 @@ return [ // Database connection charset. Changing this value will likely corrupt special characters. 'charset' => 'utf8mb4', - // emulate_prepares (Boolean) (Experimental) - // If enabled, prepared statements will be emulated. - // In combination with MySQLi this will cast all return values to strings. - 'emulate_prepares' => false, - - // pdo_emulate_prepares (Boolean) (Experimental) + // pdo_emulate_prepares (Boolean) // If enabled, the builtin emulation for prepared statements is used. - // Due to limitations of that emulation (all return values are casted as strings) - // this will most likely cause issues and should not be used on production systems. + // This can be used as a workaround for the database error "Prepared statement needs to be re-prepared". 'pdo_emulate_prepares' => false, // disable_pdo (Boolean) @@ -131,6 +125,10 @@ return [ // Don't display sharing accounts on the global community 'community_no_sharer' => false, + // contact_update_limit (Integer) + // How much contacts should be checked at a time? + 'contact_update_limit' => 100, + // cron_interval (Integer) // Minimal period in minutes between two calls of the "Cron" worker job. 'cron_interval' => 5, @@ -191,6 +189,11 @@ return [ // A value of 0 disables the deletion process. 'dbclean-expire-limit' => 1000, + // daemon_watchdog (Boolean) + // Enable regular checking if the daemon is running. + // If it is not running and hadn't been terminated normally, it will be started automatically. + 'daemon_watchdog' => false, + // diaspora_test (Boolean) // For development only. Disables the message transfer. 'diaspora_test' => false, @@ -232,6 +235,10 @@ return [ // restricts develop log writes to requests originating from this IP address. 'dlogip' => '', + // expire-notify-priority (integer) + // Priority for the expirary notification + 'expire-notify-priority' => PRIORITY_LOW, + // free_crawls (Integer) // Number of "free" searches when system => permit_crawling is enabled. 'free_crawls' => 10, @@ -245,6 +252,10 @@ return [ // This can alternatively be set on a per account basis in the pconfig table. 'groupedit_image_limit' => 400, + // gserver_update_limit (Integer) + // How much servers should be checked at a time? + 'gserver_update_limit' => 100, + // hsts (Boolean) // Enables the sending of HTTP Strict Transport Security headers. 'hsts' => false, @@ -374,6 +385,10 @@ return [ // minimal distance in minutes between two polls for a contact. Reasonable values are between 1 and 59. 'min_poll_interval' => 15, + // minimum_posting_interval (Integer) + // Minimum interval between two feed posts per user + 'minimum_posting_interval' => 0, + // no_count (Boolean) // Don't do count calculations (currently only when showing photo albums). 'no_count' => false, @@ -449,6 +464,10 @@ return [ // Whether to use Cache to store session data or to use PHP native session storage. 'session_handler' => 'database', + // remote_avatar_lookup (Boolean) + // Perform an avatar lookup via the activated services for remote contacts + 'remote_avatar_lookup' => false, + // remove_multiplicated_lines (Boolean) // If enabled, multiple linefeeds in items are stripped to a single one. 'remove_multiplicated_lines' => false,