From 3e3da50e8ac345a24b0619540966909fc65d7d56 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 7 Mar 2012 02:00:55 +0000 Subject: [PATCH] r109469: ported r113208 by bumping max file size from 1GB to 4GiB. --- includes/filerepo/backend/FileBackendStore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/filerepo/backend/FileBackendStore.php b/includes/filerepo/backend/FileBackendStore.php index 4f4a185fcc..c1be307be5 100644 --- a/includes/filerepo/backend/FileBackendStore.php +++ b/includes/filerepo/backend/FileBackendStore.php @@ -29,7 +29,7 @@ abstract class FileBackendStore extends FileBackend { /** @var Array Map of container names to sharding settings */ protected $shardViaHashLevels = array(); // (container name => config array) - protected $maxFileSize = 1000000000; // integer bytes (1GB) + protected $maxFileSize = 4294967296; // integer bytes (4GiB) /** * Get the maximum allowable file size given backend -- 2.20.1