Extra Form
PHP PHP 7.4
CMS Rhymix

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']);
    }

 

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

  • profile

    라이믹스라면 그냥 countobj 로 바꾸세요. 머리 아프니 그냥 이걸로 해결하면 편합니다. 라이믹스에서 알아서 해결해줍니다.

  • profile profile
    감사합니다. 해결되었습니다