From 1d8b03837c9447ce44223e88e0e15805ec0700f5 Mon Sep 17 00:00:00 2001
From: Neil Blakey-Milner
Date: Thu, 6 Apr 2006 08:49:37 +0000
Subject: [PATCH] Increase the minimum POST/upload/memory limit to 32MB to match reality.
---
setup/precheckup.php | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/setup/precheckup.php b/setup/precheckup.php
index 7258f06..6e426a0 100644
--- a/setup/precheckup.php
+++ b/setup/precheckup.php
@@ -334,9 +334,9 @@ PHP you are running, and which modules are available.
-=bigEnough('Maximum POST size', 'post_max_size', 8 * 1024 * 1024, true)?>
-=bigEnough('Maximum upload size', 'upload_max_filesize', 8 * 1024 * 1024, true)?>
-=bigEnough('Memory limit', 'memory_limit', 8 * 1024 * 1024, true)?>
+=bigEnough('Maximum POST size', 'post_max_size', 32 * 1024 * 1024, true)?>
+=bigEnough('Maximum upload size', 'upload_max_filesize', 32 * 1024 * 1024, true)?>
+=bigEnough('Memory limit', 'memory_limit', 32 * 1024 * 1024, true)?>
=""; # bigEnough('Maximum execution time', 'max_execution_time', 30)?>
=""; # bigEnough('Maximum input time', 'max_input_time', 60)?>
--
libgit2 0.21.4