Extra Form
PHP PHP 7.2
CMS Rhymix

해시태그 애드온

 

 Warning: Use of undefined constant __DEBUG__ - assumed '__DEBUG__' (this will throw an Error in a future version of PHP)

addons/hashtags/hashtags.addon.php:67

addons/hashtags/hashtags.addon.php:79

files/cache/addons/pc.php:1058

classes/display/DisplayHandler.class.php:87

classes/module/ModuleHandler.class.php:1163

index.php:52

 

 

                Context::loadFile(array('./addons/hashtags/hashtags'.(__DEBUG__?'':'.min').'.js', 'body', '', null), true); //67번라인
            }
        }

        $GLOBALS['__AddonHashtags__'] = new AddonHashtags;
        $GLOBALS['__AddonHashtags__']->setInfo($addon_info);
    }

    $oAddonHashtags = &$GLOBALS['__AddonHashtags__'];

    if(method_exists($oAddonHashtags, $called_position))
    {
        if(!call_user_func_array(array(&$oAddonHashtags, $called_position), array(&$this))) // 79번 라인

 

 

 

 

 

태그연관글 애드온

 

Warning: Use of undefined constant getTagRelation - assumed 'getTagRelation' (this will throw an Error in a future version of PHP)

addons/tag_relation/tag_relation.addon.php:33

files/cache/addons/pc.php:1862

classes/display/DisplayHandler.class.php:87

classes/module/ModuleHandler.class.php:1163

index.php:52

 

 

 

$output = preg_replace_callback($pos_regx, getTagRelation, $output); // 33번 라인

tag_relation.lib.php 파일에  getTagRelation 함수가 있습니다.

 

 

위와 같은 경우는 어떻게 처리해야 할까요?? 이 역시 해당 스트링에 '' 로 감싸주는건지 아직 시도는 안해봤습니다.

  • profile
    예상대로 두가지 모두 '' 로 묶어주니 해결되네요.
  • profile
    (__DEBUG__?'':'.min'). 까지 통째로 삭제하시면 됩니다. 라이믹스에서는 더이상 의미가 없는 내용입니다.

    두 번째 것은 ''로 묶어주는 것이 맞고요.
  • profile profile
    라이믹스는 min 압축파일은 이제 아예 지원을 안하나요?
  • profile profile

    죄송한 질문인데 태그연관글 애드온
    https://github.com/rx-public/rxp_tag_related/issues

    이 문제좀 추가로 봐주실 수 있을까요??? 혼자 해보려고 했는데 알람은 사려져도 동작이 이상해져서요.

    질문이 너무 많아 글로 올리는 것도 좀 죄송하네요.

  • profile profile

    고급 설정 메뉴에서 "스크립트 자동 압축"을 선택하시면
    해당 자료의 개발자가 압축 버전을 제공하든 안하든 코어에서 일괄적으로 압축해 줍니다.
    이 때, 개발자가 제공한 압축 버전은 무시하고 원본을 기준으로 다시 압축합니다.

    사용자가 원본을 수정하더라도 개발자가 제공한 압축버전은 업데이트되지 않기 때문에,
    자료를 변형하여 사용하려고 하면 무척 불편합니다.
    따라서 외부 라이브러리 등 사실상 수정할 일이 없는 스크립트를 제외하면
    자료 개발자는 압축 버전을 따로 제공하지 않을 것을 권장합니다.

  • profile profile
    rx-public은 비교적 최근까지 유지보수가 활발하게 이루어지고 있는 저장소이니
    거기 개발자분을 직접 호출하시는 편이 나을 것 같습니다.
  • profile profile
    알아서 압축 하는군요. 좋네요~