사이트 새로고침 에러
본문
사이트가 아침까지만해도 잘됐는데 갑자기 새로고침을 하니 이렇게 뜹니다 어느부분이 문제인걸까요?
Warning: dir(/www/사이트 주소/www_root/extend): failed to open dir: No such file or directory in /www_root/common.php on line 748
Fatal error: Uncaught Error: Call to a member function read() on bool in /www_root/common.php:749 Stack trace: #0 /www_root/_common.php(2): include_once() #1 /www_root/index.php(2): include_once('/www_root/_comm...') #2 {main} thrown in /www_root/common.php on line 749
---> 해당 /www_root/common.php의 748, 749 줄에는
748
$tmp = dir(G5_EXTEND_PATH);
749
while ($entry = $tmp->read()) {
// php 파일만 include 함
if (preg_match("/(\.php)$/i", $entry))
$extend_file[] = $entry;
}
이 내용이 있습니다
답변 1
(그누보드)폴더/extend
폴더가 없어져서 생긴 오류인 듯 합니다. https://sir.kr/qa/122675
(그누보드) 폴더에 extend 디렉토리 생성하면 될 듯 합니다.