Wordpress

PHP 활당 메모리 증가 시키기 [워드프레스]

cwh 2019. 2. 17. 07:54


워드프레스가 업데이트 되면서 원하는 사양도 높아지게 되었다.

그래서 최신 테마를 사용하려다 보면 메모리 관련 메시지를 받게 된다.



문제 사항


WP Memory Limit

We recommend setting memory to at least 64MB. 

The theme is well tested with a 40MB/request limit, but if you are using multiple plugins that may not be enough.






해결 방법


 /wp-includes/default-constants.php


define( 'WP_MEMORY_LIMIT', '64M' );

define( 'WP_MEMORY_LIMIT', '96M' );



 



참고

ncreasing memory allocated to PHP.