그누보드5 모바일 게시판 상단파일 불러오기
본문
그누보드5 모바일 게시판 상단파일을 불러오려고 합니다.
pc버전은 게시판관리에서 html파일을 불러 다 썼구요
모바일은 따로 m_head.html 파일을 만들어둔 상태고
m_head.html <- 이 파일을 불러오고자 합니다.
검색해보니 board_head.php 파일을 수정하면 된다고 하는데
하단의 노란색 부분을 바꾸면
가비아 호스팅 루트디렉토리때문에 /www_root/가 자꾸 경로 중간에 삽입되서엇
경로를 찾지 못해요
======================================================
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// 게시판 관리의 상단 내용
if (G5_IS_MOBILE) {
// 모바일의 경우 설정을 따르지 않는다.
include_once(G5_PATH.'mobile/m_head.html');
echo stripslashes($board['bo_mobile_content_head']);
} else {
@include ($board['bo_include_head']);
echo stripslashes($board['bo_content_head']);
}
?>
=======================================================
다른 방법이 혹시 있을까요??
부탁드려요 ㅜㅜ 고수님들
답변 2
경로에서 슬래시(/)가 빠져 있네요.
include_once(G5_PATH.'mobile/m_head.html');
위의 부분을
include_once(G5_MOBILE_PATH.'/m_head.html');
로 하거나
include_once(G5_PATH.'/mobile/m_head.html');
로 수정해서 적용해 보세요.
include_once(G5_PATH.'/mobile/m_head.html');
path를 url로도 한번 바꿔보세요~!