라이믹스 레거시 모듈 에러
Error #0 "Call to a member function toBool() on null" in modules/document/document.item.php on line 1002
라이믹스 콘텐츠 모듈에 접속하려는데 해당 오류가 발생함 https://eond.com/xemarket/461285?search_keyword=%EB%A7%88%EC%9D%B4%EB%A1%9C%EA%B7%B8&search_target=title_content 접속하려는 주소는 이와 같음 https://eond.com/xemarket/461285 이 게시물만 유독 그럼. 다른 게시물은 접근 됨. 무슨 문제일까
해당 오류 메시지는 toBool()
메서드를 호출하려는데, 호출 대상이 null
인 경우 발생하는 에러입니다.
잘못된 데이터 참조
document.item.php
파일의 1002번째 줄에서 특정 변수를 toBool()
로 변환하려고 하는데, 그 변수가 null
일 가능성이 큽니다.DocumentItem
객체 또는 관련 속성일 가능성이 높습니다.문서 데이터 누락
모듈/애드온 충돌
해당 파일(modules/document/document.item.php
)에서 1002번째 줄 위에 아래 코드를 삽입하여 어떤 변수가 null
인지 확인하세요.
Rhymix의 데이터베이스에서 문제가 발생한 문서의 데이터를 확인해보세요.
sql 복사편집 SELECT * FROM rx_document WHERE document_srl = '461285';
NULL
이면, 정상적인 값으로 수정합니다.files/cache/
폴더 삭제 후 다시 생성
https://rhymix.org/qna/1900939
modules/contents/contents.view.php
// 댓글 갯수 // 코멘트 갯수 가져오기 (eond, 250303) $oCommentModel = getModel('comment'); $args->comment_count = $oCommentModel->getCommentcount($args->document_srl); // $oDocument->comment_count = $args->comment_count; // 잘못된 사용 https://rhymix.org/qna/1900939#comment_1901080 $oDocument->add('comment_count', $args->comment_count);