1. wp-config.php를 수정
define(’WP_MEMORY_LIMIT’, ‘256M’);
2. wp-includes/default-constants.php를 수정
if ( !defined(‘WP_MEMORY_LIMIT’) ) {
if( is_multisite() ) {
define(‘WP_MEMORY_LIMIT’, ‘256M’);
} else {
define(‘WP_MEMORY_LIMIT’, ‘256M’);
}
}
3. default-constants.php에서 아래 항목을 찾아서 수정
@ini_set(‘memory_limit’, WP_MEMORY_LIMIT);
위의 내용을 아래와 같이 변경
@ini_set(‘memory_limit’, ‘256M’);
4. PHP.INI을 wp-admin 폴더 안에 만들고 내용을 아래와 같이 입력
memory_limit = 256M