mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #49642 from nextcloud/backport/49633/stable30
[stable30] fix(setupcheck): Disable PhpMaxFileSize setupcheck for now
This commit is contained in:
commit
5b8c2d62f1
1 changed files with 1 additions and 2 deletions
|
|
@ -56,7 +56,6 @@ use OCA\Settings\SetupChecks\PhpDefaultCharset;
|
|||
use OCA\Settings\SetupChecks\PhpDisabledFunctions;
|
||||
use OCA\Settings\SetupChecks\PhpFreetypeSupport;
|
||||
use OCA\Settings\SetupChecks\PhpGetEnv;
|
||||
use OCA\Settings\SetupChecks\PhpMaxFileSize;
|
||||
use OCA\Settings\SetupChecks\PhpMemoryLimit;
|
||||
use OCA\Settings\SetupChecks\PhpModules;
|
||||
use OCA\Settings\SetupChecks\PhpOpcacheSetup;
|
||||
|
|
@ -199,7 +198,7 @@ class Application extends App implements IBootstrap {
|
|||
$context->registerSetupCheck(PhpDisabledFunctions::class);
|
||||
$context->registerSetupCheck(PhpFreetypeSupport::class);
|
||||
$context->registerSetupCheck(PhpGetEnv::class);
|
||||
$context->registerSetupCheck(PhpMaxFileSize::class);
|
||||
// Temporarily disabled $context->registerSetupCheck(PhpMaxFileSize::class);
|
||||
$context->registerSetupCheck(PhpMemoryLimit::class);
|
||||
$context->registerSetupCheck(PhpModules::class);
|
||||
$context->registerSetupCheck(PhpOpcacheSetup::class);
|
||||
|
|
|
|||
Loading…
Reference in a new issue