쓰지않는게시판

[WORDPRESS]DEBUG 보기

SEUNGSAMI 2019. 1. 28. 10:50
wordpress의 플러그인을 제작할때, 오류가 발생하면서 워드프레스 홈페이지의 화면이 아예 공백으로 나오는 경우가 있다. 이러한 경우에는 wordpress/wp-config.php파일을 다음과 같이 수정해 준다.
...
/**
 * For developers: WordPress debugging mode.
 *
 * Change this to true to enable the display of notices during development.
 * It is strongly recommended that plugin and theme developers use WP_DEBUG
 * in their development environments.
 *
 * For information on other constants that can be used for debugging,
 * visit the Codex.
 *
 * @link https://codex.wordpress.org/Debugging_in_WordPress
 */
define('WP_DEBUG', TRUE);
define('WP_DEBUG_LOG', TRUE);
define('WP_DEBUG_DISPLAY', TRUE);
define('SAVEQUERIES', TRUE);
...
'WP_DEBUG'의 경우 false로 되어있으므로 TRUE로 변경해주고 나머지 세개를 추가로 define 해준다. 이후에 공백으로 나타나는 홈페이지를 다시 실행하면 오류가 잘 뜰것이다. 또한 wordpress/wp-content 디렉토리에서 debug.log파일을 터미널 명령어 tail -f debug.log 을 입력하면 debug 로그가 나오는데, 이 용량이 쌓이면 어마어마 하므로, 최대한 없게 출력해 줄 수 있도록 하자.   마지막으로 이러한 경우에도 error가 나오지 않는 경우가 있는데 이러한 경우에는 '관심법'을 사용하기 보다는 어떻게든 프로그램이 오류를 출력하도록 만드는 것이 중요하다.  

'쓰지않는게시판' 카테고리의 다른 글

[WORDPRESS] debug log확인  (0) 2019.01.28
APM(Maria DB) 설치법  (0) 2019.01.28