최신글 관련 질문입니다. 정보
최신글 관련 질문입니다.본문
그누보드 오늘 처음 써보는 초보입니다.
설치랑 게시판 생성 등은 마쳤는데 최신글이 계속 안되네요.
우선 main.php 맨 위와 아래에
<?
$g4_path = "bbs/g4"; - 그누보드 설치 폴더 경로
include_once("$g4_path/_common.php");
$g4[title] = "제목";
include_once("$g4[path]/head.sub.php");
include_once("$g4[path]/lib/latest.lib.php");
?>
<?
include_once("$g4[path]/tail.sub.php");
?>
이렇게 넣었고 _common.php에는
<?
$g4_path = "bbs/g4";
include_once("$g4_path/common.php");
?>
이렇게 넣었습니다.
최신글이 나오기는 하는데요
문제는 게시판관리하는 페이지에 가면 오류가 납니다.
Warning: main(bbs/g4/common.php): failed to open stream: 그런 파일이나 디렉토리가 없음 in /www/주소/bbs/g4/_common.php on line 3
Warning: main(): Failed opening 'bbs/g4/common.php' for inclusion (include_path='.:/usr/local/bbs/lib/php') in /www/주소/bbs/g4/_common.php on line 3
Warning: main(/lib/latest.lib.php): failed to open stream: 그런 파일이나 디렉토리가 없음 in /www/주소/bbs/g4/index.php on line 3
Warning: main(): Failed opening '/lib/latest.lib.php' for inclusion (include_path='.:/usr/local/bbs/lib/php') in /www/주소/bbs/g4/index.php on line 3
아무래도 경로 지정이 잘못된 것 같은데 어딜 어떻게 수정해야 할지 모르겠네요.
메인.php와 _common.php파일에서 상대경로를 ../.. 로 수정하면 최신글이 안뜨구요.
어떻게 해결해야 할까요ㅜ.ㅜ
설치랑 게시판 생성 등은 마쳤는데 최신글이 계속 안되네요.
우선 main.php 맨 위와 아래에
<?
$g4_path = "bbs/g4"; - 그누보드 설치 폴더 경로
include_once("$g4_path/_common.php");
$g4[title] = "제목";
include_once("$g4[path]/head.sub.php");
include_once("$g4[path]/lib/latest.lib.php");
?>
<?
include_once("$g4[path]/tail.sub.php");
?>
이렇게 넣었고 _common.php에는
<?
$g4_path = "bbs/g4";
include_once("$g4_path/common.php");
?>
이렇게 넣었습니다.
최신글이 나오기는 하는데요
문제는 게시판관리하는 페이지에 가면 오류가 납니다.
Warning: main(bbs/g4/common.php): failed to open stream: 그런 파일이나 디렉토리가 없음 in /www/주소/bbs/g4/_common.php on line 3
Warning: main(): Failed opening 'bbs/g4/common.php' for inclusion (include_path='.:/usr/local/bbs/lib/php') in /www/주소/bbs/g4/_common.php on line 3
Warning: main(/lib/latest.lib.php): failed to open stream: 그런 파일이나 디렉토리가 없음 in /www/주소/bbs/g4/index.php on line 3
Warning: main(): Failed opening '/lib/latest.lib.php' for inclusion (include_path='.:/usr/local/bbs/lib/php') in /www/주소/bbs/g4/index.php on line 3
아무래도 경로 지정이 잘못된 것 같은데 어딜 어떻게 수정해야 할지 모르겠네요.
메인.php와 _common.php파일에서 상대경로를 ../.. 로 수정하면 최신글이 안뜨구요.
어떻게 해결해야 할까요ㅜ.ㅜ
댓글 전체
<?
include_once("./_common.php");
include_once("$g4[path]/lib/latest.lib.php");
$g4[title] = "";
include_once("./_head.php");
// latest(최신글 스킨명, 게시판 테이블명, 출력줄수, 제목글자수);
?>
<!-- 메인화면 최신글 시작 -->
<table width="" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center" valign="top"><?=latest('최신글 스킨명','게시판 테이블명', 5, 30);?></td>
</tr>
</table>
<!-- 메인화면 최신글 끝 -->
<?
include_once("./_tail.php");
?>
include_once("./_common.php");
include_once("$g4[path]/lib/latest.lib.php");
$g4[title] = "";
include_once("./_head.php");
// latest(최신글 스킨명, 게시판 테이블명, 출력줄수, 제목글자수);
?>
<!-- 메인화면 최신글 시작 -->
<table width="" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center" valign="top"><?=latest('최신글 스킨명','게시판 테이블명', 5, 30);?></td>
</tr>
</table>
<!-- 메인화면 최신글 끝 -->
<?
include_once("./_tail.php");
?>
안되면 main.php 경로(위치)를 애기해 주세요.