검색하고 찾은 게시물 접근시
아래 라인의 에러가 나는데 왜그런걸까요!!
슈퍼캐시, 검색 부분을 꺼도 마찬가지현상이 생기네요 =_=!
오프셋 쿼리 사용시 해당 문제가 발생하네요..
Call to a member function getValue() on a non-object
Fatal Error: Call to a member function getValue() on a non-object
Call to a member function getValue() on a non-object
classes/db/DBMysql.class.php : 769
762 $total_count = (int) (isset($count_output->count) ? $count_output->count : NULL);
763
764 $list_count = $limit->list_count->getValue();
765 if(!$list_count)
766 {
767 $list_count = 20;
768 }
769 $page_count = $limit->page_count->getValue();
770 if(!$page_count)
771 {
772 $page_count = 10;
773 }
774 $page = $limit->page->getValue();
775 if(!$page || $page < 1)
오프셋 쿼리 사용시 해당하는 부분(queryPageLimit)은 아예 실행되지 않아야 하는데요... 혹시 오프셋 쿼리를 지원하지 않는 버전(XE 모든 버전, 라이믹스 master 등)을 사용하고 계신가요?