Increase memory limit. Props darkdragon. see #3141

git-svn-id: http://svn.automattic.com/wordpress/trunk@6681 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-01-29 17:25:45 +00:00
parent 7d78a53a87
commit 5c2f29c467
1 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,12 @@
* @package WordPress
*/
if ( !defined('WP_MEMORY_LIMIT') )
define('WP_MEMORY_LIMIT', '32M');
if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < abs(intval(WP_MEMORY_LIMIT)) ) )
@ini_set('memory_limit', WP_MEMORY_LIMIT);
/**
* wp_unregister_GLOBALS() - Turn register globals off
*