[워드프레스] include_once(/.../wp-content/sunrise.php): Failed to open stream: No such file or directory in ...
PHP Warning: include_once(/.../wp-content/sunrise.php): Failed to open stream: No such file or directory in /.../wp-includes/ms-settings.php on line 47
PHP Warning: include_once(): Failed opening '/.../wp-content/sunrise.php' for inclusion (include_path='.:/.../usr/share/pear:/.../usr/share/php:/usr/share/pear:/usr/share/php') in /.../wp-includes/ms-settings.php on line 47
(1) 까닭
아래처럼 워드프레스의 /wp-content/ms-settings.php 파일에 'SUNRISE'에 뜻이 매겨져 있으면 'sunrise.php' 파일을 찾는 내용이 들어 있다.
if ( defined( 'SUNRISE' ) ) {
include_once WP_CONTENT_DIR . '/sunrise.php';
}
'SUNRISE'의 뜻은 매겨져 있지만 sunrise.php 파일이 없어서 나올 수 있는 경고문이다.
(2) 풀기
wp-config.php 같은 파일들에 이런 내용이 있는지 찾아 본다.
/* for MU Domain Mapping */
define ('SUNRISE','true');
“define ('SUNRISE','true');”을 지우거나 주석문으로 바꾼다.
덧글을 달아 주세요