Q&A

CMS/프레임워크 Rhymix 1.9
개발 언어 PHP 7.4

TypeError #0 "count(): Argument #1 ($var) must be of type Countable|array, null given" in addons/force_rewrite/force_rewrite.addon.php on line 180

 

와 같은 오류메세지가 발생하는데요, 180Line에 가보면

 

    if (count($_SESSION['force_rewrite']) > 1000)
    {
        array_shift($_SESSION['force_rewrite']);
    }
    
    // If the URL can be rewritten, redirect to the permalink. Otherwise, stop processing.
    if (count($query_args) == 2)
    {
        $redirect_url = getNotEncodedUrl('', 'mid', $query_args['mid'], 'document_srl', $query_args['document_srl']);
    }

 

로 되어있습니다. 혹시 해당 애드온을 수정할 방법이 있을까요?

댓글 2