From 691059aab21463971517e8a3ab59f545634b903c Mon Sep 17 00:00:00 2001 From: wrongecho Date: Thu, 13 Aug 2026 09:45:01 +0100 Subject: [PATCH] Debug - bump php memory flag to 512M --- admin/debug.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/debug.php b/admin/debug.php index 43ddbc8b5..d611dcc66 100644 --- a/admin/debug.php +++ b/admin/debug.php @@ -114,12 +114,12 @@ $phpConfig[] = [ 'value' => $post_max_size, ]; -// PHP Memory Limit >= 128M +// PHP Memory Limit >= 512M $memoryLimit = ini_get('memory_limit'); $memoryLimitBytes = toBytes($memoryLimit); -$memoryLimitPassed = $memoryLimitBytes >= (128 * 1024 * 1024); +$memoryLimitPassed = $memoryLimitBytes >= (512 * 1024 * 1024); $phpConfig[] = [ - 'name' => 'PHP Memory Limit >= 128M', + 'name' => 'PHP Memory Limit >= 512M', 'passed' => $memoryLimitPassed, 'value' => $memoryLimit, ];