헤드(head.php) 파일에 최근게시물 불러오면
게시판 실행이 안되나요
헤드파일에 최근게시물을 불러온후 게시판 상단에 헤드파일을 하단에푸더파일을 불러왔는데
게시판이 안보여지네요
여기보면 헤드에 공지사항하고 태그구름 최근게시물로불러왔는데 공지사항을 클릭하게되면
이런형식으로 게시판이 안보여지네요
탑이 동일하여 헤드파일로 만든후 게시판에서 계속 불러오는데 ~ 이렇게 오류가 나버리네요
어떻게 해야되는지 가르켜주시기라 바랍니다
|
댓글을 작성하시려면 로그인이 필요합니다.
로그인
댓글 6개
head.php 소스를 올려주셔야 정확한 판단을 할 수 있을 것 같습니다..^^
--------------------------------------------------
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once("$g4[path]/head.sub.php");
include_once("$g4[path]/lib/outlogin.lib.php");
include_once("$g4[path]/lib/poll.lib.php");
include_once("$g4[path]/lib/visit.lib.php");
include_once("$g4[path]/lib/connect.lib.php");
include_once("$g4[path]/lib/popular.lib.php");
//print_r2(get_defined_constants());
// 사용자 화면 상단과 좌측을 담당하는 페이지입니다.
// 상단, 좌측 화면을 꾸미려면 이 파일을 수정합니다.
$table_width = 1004;
?>
<!-- 상단 배경 시작 -->
<div align="center">
<table width="791" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="10"></td>
</tr>
</table>
<table width="791" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3"><a href="http://www.bolggeori.com"><img src="<?=$g4['path']?>/image/main_img_r1_c1.gif" width="791" height="39" border="0" /></a></td>
</tr>
<tr>
<td width="235"><img src="<?=$g4['path']?>/image/main_img_r2_c1.gif" width="235" height="56" /></td>
<td width="342"><table width="300" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><?=latest('xbox_notice_scroll', notice, 2, 2);?></td> <---공지사항
</tr>
</table></td>
<td width="214"><img src="<?=$g4['path']?>/image/main_img_r2_c6.gif" width="214" height="56" /></td>
</tr>
<tr>
<td colspan="3"><img src="<?=$g4['path']?>/image/main_img_r3_c1.gif" width="791" height="4" /></td>
</tr>
<tr>
<td colspan="3"><table width="791" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="11"><img src="<?=$g4['path']?>/image/main_img_r4_c1.gif" width="11" height="100" /></td>
<td width="760"><table width="740" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><?=latest("uja_tag_v2_1", "tag", 1);?></td> < --태그불러오는최근게시물
</tr>
</table></td>
<td width="20"><img src="<?=$g4['path']?>/image/main_img_r4_c9.gif" width="20" height="100" /></td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="3"><img src="<?=$g4['path']?>/image/main_img_r5_c1.gif" width="791" height="20" /></td>
</tr>
</table>
<table width="791" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="10"></td>
</tr>
</table>
include_once("$g4[path]/lib/latest.lib.php");
최근게시물은 위 소스가 있어야 게시판 클릭시 작동이 됩니다
즉 아래와 같이 한줄추가
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once("$g4[path]/head.sub.php");
include_once("$g4[path]/lib/outlogin.lib.php");
include_once("$g4[path]/lib/poll.lib.php");
include_once("$g4[path]/lib/visit.lib.php");
include_once("$g4[path]/lib/connect.lib.php");
include_once("$g4[path]/lib/popular.lib.php");
include_once("$g4[path]/lib/latest.lib.php");
.
.
.
.
.