Posts per author/server on the community pages (#13764)

* Posts per author/server on the community pages

* Updated database.sql
This commit is contained in:
Michael Vogel 2023-12-25 12:39:15 +01:00 committed by GitHub
parent d2feade9cf
commit f23ecaff6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 448 additions and 403 deletions

View file

@ -166,6 +166,10 @@ return [
// Has to be one of these values: emergency, alert, critical, error, warning, notice, info, debug
'loglevel' => 'notice',
// max_author_posts_community_page (Integer)
// The maximum number of posts on the local community page from a single author.
'max_author_posts_community_page' => 0,
// max_image_length (Integer)
// An alternate way of limiting picture upload sizes.
// Specify the maximum pixel length that pictures are allowed to be (for non-square pictures, it will apply to the longest side).
@ -173,6 +177,10 @@ return [
// If you don't want to set a maximum length, set to -1.
'max_image_length' => -1,
// max_server_posts_community_page (Integer)
// The maximum number of posts on the global community page from a single server.
'max_server_posts_community_page' => 0,
// maximagesize (Integer)
// Maximum size in bytes of an uploaded photo.
'maximagesize' => 800000,