From 8e45050e617cfa9faf6c709df75cab676a84a5d3 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Tue, 11 Sep 2012 01:41:56 +0000 Subject: [PATCH] Bump default memory limit from 32MB to 40MB. fixes #21646. git-svn-id: http://core.svn.wordpress.org/trunk@21809 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/default-constants.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/default-constants.php b/wp-includes/default-constants.php index ccb997c2ed..0951360981 100644 --- a/wp-includes/default-constants.php +++ b/wp-includes/default-constants.php @@ -20,7 +20,7 @@ function wp_initial_constants( ) { if( is_multisite() ) { define('WP_MEMORY_LIMIT', '64M'); } else { - define('WP_MEMORY_LIMIT', '32M'); + define('WP_MEMORY_LIMIT', '40M'); } }