FIX for Wordpress Memory Limit ERROR..let them WORK.!!!

Status
Not open for further replies.

flavglen

New Member
Messages
9
Reaction score
0
Points
0
those who are facing php memory limit error on wordpress can solve their problem by editing single file... i know server is facing problems...doesnt matter...read on


wordpress 3 users:

go to wp-includes/default-constants.php

edit

in 1st function wp_initial_constants( )

edit

PHP:
if ( !defined('WP_MEMORY_LIMIT') ) {
        if( is_multisite() ) {
            define('WP_MEMORY_LIMIT', '128M'); // its ok
        } else {
            define('WP_MEMORY_LIMIT', '64M');  // it was 32 
        }
    }
thats it..


dont create support ticket for simple issue..thanks x10hosting
 
Last edited:

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Does not work.

You are adjusting what WP will ask for. The errors are from the system and individual users cannot adjust that at all.
 
Status
Not open for further replies.
Top