검색하고 찾은 게시물 접근시

아래 라인의 에러가 나는데 왜그런걸까요!!

 

슈퍼캐시, 검색 부분을 꺼도 마찬가지현상이 생기네요 =_=!

 

오프셋 쿼리 사용시 해당 문제가 발생하네요.. 

 

 

 

 

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)  

  • profile

    오프셋 쿼리 사용시 해당하는 부분(queryPageLimit)은 아예 실행되지 않아야 하는데요... 혹시 오프셋 쿼리를 지원하지 않는 버전(XE 모든 버전, 라이믹스 master 등)을 사용하고 계신가요?

  • profile ?
    1.7마지막 버전이에요 설정 옆에 패치 적용 사이트로 들어가서 코드 수정해주었어요..

    V 사용가능함으로 변경되어서 사용했는데.. 문제가 될까요?
  • ? profile
    1.7에서는 테스트해보지 않아서 모르겠네요.
  • profile ?
    죄송합니다:) 확인해본결과 패치 작업을 잘못해서 생기는 문제였습니다 해결했어요!!