aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/lib/Controller
Commit message (Collapse)AuthorAgeFilesLines
...
* | feat: remove check for OpenSSL 1.0.1d and 1.0.2bDaniel Kesselberg2023-06-041-11/+0
|/ | | | | | | OpenSSL 1.0.1d: 2013-02-05 OpenSSL 1.0.2b: 2015-06-11 Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Merge pull request #37451 from Fenn-CS/fix/36437/deprecate-php-8.0Andy Scherzinger2023-04-191-1/+1
|\ | | | | Deprecate PHP8.0
| * Deprecate PHP8.0fenn-cs2023-04-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHP8.0 would stop receiving security support on 26 Nov 2023 hence this deprecation. Next, is the eventual drop of PHP8.0 before its EOL. This commit also updates the message type from INFO to WARNING if the php on file has reached its EOL. See: https://www.php.net/supported-versions.php Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
* | add an admin check for db file lockingSimon L2023-04-171-0/+6
| | | | | | | | Signed-off-by: Simon L <szaimen@e.mail.de>
* | Fix types for reading and writing config valuesjld31032023-04-051-1/+1
|/ | | | Signed-off-by: jld3103 <jld3103yt@gmail.com>
* check-setup: recommend exif extensionVarun Patil2023-03-241-0/+6
| | | | | | | JPEG previews are not correctly oriented when exif is not enabled along with other issues. There's no easy way to discover this either. Signed-off-by: Varun Patil <varunpatil@ucla.edu>
* Create headings for settings pagesjulia.kirschenheuter2023-03-072-2/+2
| | | | Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
* Check for opcache.file_cache_only=1MichaIng2023-02-151-0/+2
| | | | | | which disables shared memory based OPcache with disk file cache used only, if enabled. In this case, "opcache.memory_consumption" and others do not apply, so show the correct performance recommendation to enable memory cache. Signed-off-by: MichaIng <micha@dietpi.com>
* Migrate to Symfony MailerCôme Chilliet2023-02-021-2/+0
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Fix interned strings buffer check if 0 free bytesMichaIng2023-01-231-4/+4
| | | | | | | With #32902 it was meant to be avoided to recommend raising the interned strings buffer size above a quarter of the total OPcache size. This works as long as there is at least 1 byte free, but does not apply if the buffer is filled completely. This commit switches the conditions so that the interned strings buffer size must be smaller than a quarter of the total OPcache size for the warning to be shown. That the buffer must be either filled completely or by more than 90% remains untouched. Signed-off-by: MichaIng <micha@dietpi.com>
* Remove workarounds specific to 7.4Côme Chilliet2023-01-201-1/+1
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Add a const for the max user password lengthJoas Schilling2023-01-041-2/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix case sensitivity of email when saving settingsCarl Schwan2022-12-161-1/+1
| | | | | | | | | Otherwise we detect a email change all the time and since email are immutable in ldap this prevent updating other fields. Related: https://github.com/nextcloud/server/pull/33813 Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Add section-id and section-type data attributes to settings <li> navigation ↵Thomas Citharel2022-12-051-0/+1
| | | | | | items Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Merge pull request #34940 from nextcloud/feat/add-mastodonCarl Schwan2022-11-221-1/+8
|\ | | | | Add mastodon and reorganize profile info section
| * Rename mastodon to fediverseCarl Schwan2022-11-221-7/+9
| | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * Add mastodon personal info fieldCarl Schwan2022-11-211-2/+7
| | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | Help pages: set window title for sidebar sectionsjulia.kirschenheuter2022-11-221-2/+9
|/ | | | Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
* Merge pull request #34745 from nextcloud/optimize-show-appsCôme Chilliet2022-11-211-7/+7
|\ | | | | Extract $ignoreMaxApps from array_map callback in AppSettingsController
| * Extract $ignoreMaxApps from array_map callback in AppSettingsControllerThomas Citharel2022-10-221-7/+7
| | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | Merge pull request #35024 from nextcloud/deprecate/php74Simon L2022-11-141-1/+1
|\ \ | | | | | | Deprecate PHP7.4
| * | Deprecate PHP7.4Christoph Wurst2022-11-101-1/+1
| | | | | | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | | Merge pull request #34485 from ↵Robin Appelman2022-11-111-0/+1
|\ \ \ | |/ / |/| | | | | | | | michaelkuhn/hasBigIntConversionPendingColumns-files_trash Fix hasBigIntConversionPendingColumns missing files_trash
| * | Fix hasBigIntConversionPendingColumns missing files_trashMichael Kuhn2022-10-091-0/+1
| | | | | | | | | | | | | | | | | | | | | The two tables seem to have gone out of sync, causing the web interface to miss `files_trash.auto_id` not being a bigint. Signed-off-by: Michael Kuhn <github@ikkoku.de>
* | | Limit-number-of-concurrent-preview-generationsszaimen2022-11-051-0/+5
| |/ |/| | | | | | | Signed-off-by: Bowen Ding <dbw9580@live.com> Signed-off-by: szaimen <szaimen@e.mail.de>
* | Harden some PHP functionsacsfer2022-10-041-5/+5
|/ | | | | | To avoid things like https://github.com/nextcloud/server/issues/26034 Signed-off-by: Louis Chemineau <louis@chmn.me>
* Merge pull request #34067 from nextcloud/timm2k-patch-1Vincent Petry2022-09-151-0/+1
|\ | | | | Convert file_metadata.id from int(11) to bigint(20)
| * Update CheckSetupController.phptimm2k2022-09-141-0/+1
| | | | | | | | | | file_metadata.id needs to be bigint(20). Signed-off-by: timm2k <timm2k@gmx.de>
* | Add accessibility entry in user menuVincent Petry2022-09-141-1/+5
|/ | | | Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* Merge branch 'master' into fix/setting/accessibility-titleCarl Schwan2022-09-025-27/+42
|\ | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * Merge pull request #33429 from nextcloud/port-password-vueCarl Schwan2022-08-311-19/+7
| |\ | | | | | | Port password settings to vue
| | * Port password settings to vueCarl Schwan2022-08-311-19/+7
| | | | | | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * | add a way to open the admin settings overview directlyszaimen2022-08-301-1/+6
| |/ | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de>
| * Fix opening Help page throws ExceptionArthur Schiwon2022-08-241-1/+1
| | | | | | | | | | | | | | | | | | | | - Commit 458c2fa2971e6595a18a289b0afeb4a79ea0e0d3 provoked the error, because the "core" "app" was not found. Previously, false was returned, but now an AppPathNotFoundException - IUrlGenerator::linkTo() accepts an empty app argument however, moving the "core" portion to the path solves it and avoids apps lookup Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
| * add a setup check for 64 bitszaimen2022-07-131-0/+9
| | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de>
| * Don't allow setting password bigger than 469 charactersCarl Schwan2022-07-051-1/+10
| | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
| * do not display the buffer_size info if the size is already set to a certain ↵szaimen2022-06-171-1/+5
| | | | | | | | | | | | | | threshold Signed-off-by: szaimen <szaimen@e.mail.de> Co-Authored-By: MichaIng <micha@dietpi.com>
| * l10n: Delete apostropheValdnet2022-06-072-3/+3
| | | | | | Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
| * l10n: Change to a capital letterValdnet2022-06-031-1/+1
| | | | | | Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
* | Improve accessibility of the title of the settingsCarl Schwan2022-05-161-15/+19
|/ | | | | | | | | | | Before every setting page had the same title and this is causing issues for screenreaders since they can't differenciate the title of page. Now a new variable is available for apps to declare the page subtitle. This new variable is implemented for the settings app and while at it I added a bit more type hinting to the stuff I touched :) Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Do not dispatch postSetPassword when setPassword failsLouis Chemineau2022-05-051-1/+4
| | | | | | Also Improve error message when setPassword fails Signed-off-by: Louis Chemineau <louis@chmn.me>
* l10n: Improve grammarrakekniven2022-04-271-1/+1
| | | | | Reported at Transifex. Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
* Merge pull request #30950 from nextcloud/enh/opcache-recommends-translationVincent Petry2022-03-241-8/+8
|\ | | | | Add OPcache recommendations to Transifex
| * Add OPcache recommendations to TransifexMichaIng2022-03-221-8/+8
| | | | | | | | | | | | Fixes: https://github.com/nextcloud/server/issues/30941 Signed-off-by: MichaIng <micha@dietpi.com>
* | Limit the length of app password namesJoas Schilling2022-03-231-0/+8
|/ | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Merge pull request #31430 from ↵Simon L2022-03-101-8/+7
|\ | | | | | | | | nextcloud/enh/31429/improve-overwrite-cli-url-check Validate `overwrite.cli.url` to be a url in setup check
| * improve overwrite cli url setup checkszaimen2022-03-091-8/+7
| | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de>
* | Merge pull request #31470 from nextcloud/enh/13099/allow-disable-imagick-warningJohn Molakvoæ2022-03-081-14/+21
|\ \
| * | allow to disable the imagick warningszaimen2022-03-071-14/+21
| | | | | | | | | | | | | | | Signed-off-by: szaimen <szaimen@e.mail.de> Co-Authored-By: MichaIng <micha@dietpi.com>
* | | allow adding protocol to domains in 'connectivity_check_domains' configJulien Veyssier2022-03-071-8/+13
|/ / | | | | | | Signed-off-by: Julien Veyssier <eneiluj@posteo.net>