묻고답하기

레이아웃을 적용시키면 바로
Fatal error: Call to a member function on a non-object in /home/jinform/public_html/zbxe/classes/widget/WidgetHandler.class.php on line 49
라는 오류가 떠요.
참고로 제 레이아웃은 기본레이아웃입니다.

<!-- js 파일 import -->
<!--%import("js/xe_official.js")-->

<!--
레이아웃과 연동될 css 파일
import -->
<!--@if($layout_info->colorset == "white")-->
    <!--%import("css/white.css")-->
<!--@elseif($layout_info->colorset == "black")-->
    <!--%import("css/black.css")-->
<!--@else-->
    <!--%import("css/default.css")-->
<!--@end-->

<!--@if($layout_info->background_image)-->
<style type="text/css">
    body {  background-repeat:repeat-x; background-image:url({getUrl()}{$layout_info->background_image}); }      
</style>
<!--@end-->

<div id="bodyWrap">
        <div id="header">
               <h1><a href="{$layout_info->index_url}"><!--@if(!$layout_info->logo_image)--><img src="./images/{$layout_info->colorset}/zeroBoardXE.png" alt="ZeroBoard™  XE" class="iePngFix" /><!--@else--><img src="{$layout_info->logo_image}" alt="logo" border="0" class="iePngFix" /><!--@end--></a></h1>

               <div id="language">
                       <strong title="{$lang_type}">{$lang_type}</strong> <a href="#selectLang" onclick="showHide('selectLang');return false;"><img src="./images/{$layout_info->colorset}/buttonLang.gif" alt="Select Language" width="87" height="15" /></a>
                       <ul id="selectLang">
                <!--@foreach($lang_supported as $val)--><!--@if($val != $lang_type)-->
                              <li><a href="#" onclick="doChangeLangType('{$val}');return false;">{$val}</a></li>
                <!--@end--><!--@end-->
                       </ul>
               </div>

               <!--GNB-->
               <ul id="gnb">
            <!-- main_menu 1
차 시작
-->
            <!--@foreach($main_menu->list as $key => $val)--><!--@if($val['text'])-->
                <!--@if($val['selected'])-->
                    {@ $menu_1st = $val }
                <!--@end-->

                <li <!--@if($val['selected'])-->class="on"<!--@end-->><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['text']}</a></li>

            <!--@end--><!--@end-->
            <!-- main_menu 1
차 끝
-->
               </ul>
               <!--//GNB-->

               <form action="{getUrl()}" method="post" id="isSearch">
            <input type="hidden" name="mid" value="{$mid}" />
            <input type="hidden" name="act" value="IS" />

                       <input name="search_target" type="radio" value="title" id="search_target" class="searchOrder" checked="checked" title="search option" />
                       <label for="search_target" class="checked" id="search_target_label" onclick="showHide('selectOrder'); return false">{$lang->title}</label>
                       <ul id="selectOrder">
                              <li>
                                      <input type="radio" name="search_target" value="title" id="search_target1" />
                                      <label for="search_target1" onclick="chkIsKind(1, '{$lang->title}'); return false;" onmouseover="this.className='on'" onmouseout="this.style.background='none'">{$lang->title}</label>
                              </li>
                              <li>
                                      <input type="radio" name="search_target" value="content" id="search_target2" />
                                      <label for="search_target2" onclick="chkIsKind(2, '{$lang->content}'); return false;" onmouseover="this.className='on'" onmouseout="this.style.background='+ '+ 'none'">{$lang->content}</label>
                              </li>
                              <li>
                                      <input type="radio" name="search_target" value="title_content" id="search_target3" />
                                      <label for="search_target3" onclick="chkIsKind(3, '{$lang->title}+{$lang->content}'); return false;" onmouseover="this.className='on'" onmouseout="this.style.background='none'">{$lang->title}+{$lang->content}</label>
                              </li>
                <!--
                              <li>
                                      <input type="radio" name="search_target" value="comment" id="search_target4" />
                                      <label for="search_target4" onclick="chkIsKind(4, '{$lang->comment}'); return false;" onmouseover="this.className='on'" onmouseout="this.style.background='none'">{$lang->comment}</label>
                              </li>
                -->
                       </ul>
                       <input name="is_keyword" type="text" class="inputText" title="keyword" />

                       <input type="image" src="./images/{$layout_info->colorset}/buttonSearch.gif" alt="{$lang->cmd_search}" class="submit" />
               </form>

        </div>
        <div id="contentBody">
               <div id="columnLeft">

            <!--
로그인 위젯
-->
            <img src="./images/blank.gif" class="zbxe_widget_output" widget="login_info" skin="xe_official" colorset="{$layout_info->colorset}" />

            <!--
왼쪽 2차 메뉴
-->
                       <img src="./images/blank.gif" alt="" class="mask" />

            <!--@if($menu_1st)-->
                       <ol id="lnb">
                {@ $idx = 1 }
                <!--@foreach($menu_1st['list'] as $key => $val)--><!--@if($val['text'])-->
                              <li <!--@if($val['selected'])-->class="on"<!--@end-->><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['+ 'text']}</a>

                    <!-- main_menu 3
차 시작
-->
                    <!--@if($val['list'])-->
                                      <ul>
                    <!--@foreach($val['list'] as $k => $v)--><!--@if($v['text'])-->
                                             <li <!--@if($v['selected'])-->class="on"<!--@end-->><a href="{$v['href']}" <!--@if($v['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$v['text']}</a></li>
                    <!--@end--><!--@end-->
                                      </ul>
                    <!--@end-->
                              </li>
                {@$idx++}
                <!--@end--><!--@end-->
                       </ol>
            <!--@end-->

               </div>
               <div id="columnRight">
            <!--
컨텐츠 시작
-->
            {$content}

               </div>
        </div>
        <ul id="footer">
               <li class="first-child">
                       <address>
                       <a href="http://www.zeroboard.com" onclick="window.open(this.href);return false;"><img src="./images/{$layout_info->colorset}/powerdByZeroboard.gif" alt="Powered By ZeroBoard" width="106" height="5" /></a>
                       </address>

               </li>

        <!--@foreach($bottom_menu->list as $key => $val)-->
               <li><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['text']}</a></li>
        <!--@end-->
        </ul>
</div>

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
쫑아 왜 A 태그의 TARGET 이 자동으로 지워지죠? [1] 2013.04.27 by 송동우
옆집옵하 관리자 페이지 포인트 시스템 오류 문의드립니다. [1] file 2013.04.27 by 푸시아
다크진 로그인한 사용자 프로필이미지 출력소스? [1] 2013.04.27 by 푸시아
시온의영광 최근게시물을 출력할 때 댓글이 많은 글 순서대로 하려면?? [2] 2013.04.27 by 송동우
우끼우끼 모바일에서 그룹이미지 출력하려면? [1] 2013.04.28 by 송동우
다크진 업데이트 소식 문구 바꿀려구 하는데요 [1] file 2013.04.28 by 송동우
우끼우끼 모바일에서 그룹이미지 사용하려면?  
두바이 fgdfsgsgsdfg [2] 2013.04.28 by mc뷰
박경호137 엔진업그레이드후 메인화면 외부로그인이 안됩니다.  
참치찌개 닉네임 클릭후 팝업메뉴 출력 관련 [1] file 2013.04.28 by 송동우
GoodguySEO 스펨 엮인글 전체 삭제 문의 [1] file 2013.04.28 by 송동우
다크진 최근글 위젯에서 타이틀 변경하는 방법? [1] file 2013.04.28 by 송동우
수ㅇㅏ~★ 로그인(접속) 페이지 수정 [1] 2013.04.28 by 송동우
이지매니아 setMessage로 나오는 경고창을 팝업으로 대체할 수 있을까요? [1] 2013.04.28 by 송동우
참치찌개 댓글 작성후 제목 표시중 변경됨 [1] file 2013.04.28 by 송동우
두바이 zxcxzcasdasda [1] 2013.04.28 by forest535
다크진 XE 속도 개선 팁 중에서... [1] 2013.04.28 by 송동우
듀얼코어 워드프레스와 xe를 연동하고 싶습니다.  
김벡희 lang파일 ... [2] 2013.04.28 by 마야인
로그홈 추천,비추천 사용시 페이지 새로고침  
리턴님 XE Core 최신버전 FTP로 업데이트이후 쉬운설치 메뉴는 어딨나요  
zombiman 스케치북5 레이아웃에서 특정그룹에게만 추천,비추천,신고 권한 부여하려면? [1] 2013.04.28 by 송동우
Centell 코어 업데이트를 할 수 없습니다.  
길거리예술가 [ 미해결 ] 회원 레벨 마크(닉네임) 클릭 시 보이는 정보를 관리자만 보게 하고 싶습니다 [6] 2013.04.28 by 길거리예술가
옆집옵하 xe.1.5.4.2 버전 회원그룹 및 포인트 문의드립니다. [1] file 2013.04.28 by EnuX
김벡희 도와주세요 .... file  
실속제로 files/cache/ruleset/ 에러파일 열어보니 아래와 같은 내용이 있습니다.  
카이네드 regdate 년 월 일 표시 방법좀..  
비밀얌 최근글 위젯 선택한 글 제외하기? [1] file 2013.04.28 by 송동우
Asaph 소셜XE 페북 에러나는건 뭐 때문일까요?ㅜ [4] 2013.04.29 by 도라미