Commit 1d8b03837c9447ce44223e88e0e15805ec0700f5

Authored by Neil Blakey-Milner
1 parent 3d618f47

Increase the minimum POST/upload/memory limit to 32MB to match reality.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@5197 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 3 additions and 3 deletions
setup/precheckup.php
@@ -334,9 +334,9 @@ PHP you are running, and which modules are available.</p> @@ -334,9 +334,9 @@ PHP you are running, and which modules are available.</p>
334 </tr> 334 </tr>
335 </thead> 335 </thead>
336 <tbody> 336 <tbody>
337 -<?=bigEnough('Maximum POST size', 'post_max_size', 8 * 1024 * 1024, true)?>  
338 -<?=bigEnough('Maximum upload size', 'upload_max_filesize', 8 * 1024 * 1024, true)?>  
339 -<?=bigEnough('Memory limit', 'memory_limit', 8 * 1024 * 1024, true)?> 337 +<?=bigEnough('Maximum POST size', 'post_max_size', 32 * 1024 * 1024, true)?>
  338 +<?=bigEnough('Maximum upload size', 'upload_max_filesize', 32 * 1024 * 1024, true)?>
  339 +<?=bigEnough('Memory limit', 'memory_limit', 32 * 1024 * 1024, true)?>
340 <?=""; # bigEnough('Maximum execution time', 'max_execution_time', 30)?> 340 <?=""; # bigEnough('Maximum execution time', 'max_execution_time', 30)?>
341 <?=""; # bigEnough('Maximum input time', 'max_input_time', 60)?> 341 <?=""; # bigEnough('Maximum input time', 'max_input_time', 60)?>
342 <tbody> 342 <tbody>