Commit b611acb1a1d7aa35735c2247f6b8f8c60e8e5274
1 parent
cbc1144a
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 | 334 | </tr> |
| 335 | 335 | </thead> |
| 336 | 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 | 340 | <?=""; # bigEnough('Maximum execution time', 'max_execution_time', 30)?> |
| 341 | 341 | <?=""; # bigEnough('Maximum input time', 'max_input_time', 60)?> |
| 342 | 342 | <tbody> | ... | ... |