최신글 관련 문의 드립니다 ㅠ ㅠ > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

최신글 관련 문의 드립니다 ㅠ ㅠ 정보

최신글 관련 문의 드립니다 ㅠ ㅠ

본문

제가 웹디자인 공부 중이라 실습으로 홈페이지 하나를 만들어 보고 있는데요,

게시판 같은 기능은 다 적용이 되는데 유독 최신글만 적용이 안되네요.

테이블을 만들고 html 상단에

<?
 include_once("./_common.php");
 include_once("$g4[path]/head.sub.php");
 include_once("$g4[path]/lib/latest.lib.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");
?>

내용 적용해 놓고 최신글 php 적용할 테이블에

(저는 東問西答님의 simple_mov 스킨을 사용하려고 합니다.)

<?php echo latest("simple_mov", "Live", 3, 30); ?>

이렇게 해서 적용해 놓으면 아무것도 뜨지 않고 페이지 하단이 잘려버리는 현상이 생깁니다.

기본 basic 스킨을 넣어도 이런 문제가 생기네요. 어떻게 하다보면 해결 되겠지 싶어

3시간 정도 고생하다가 결국 이렇게 질문 올립니다 ㅠ ㅠ... 혹시나 필요하실 수도 있으니

참고하실 홈페이지 소스 올려 놓습니다.

웹디자인 초보 좀 구제해 주세요 고수님들 ㅠ ㅠ...



<?
 include_once("./_common.php");
 include_once("$g4[path]/head.sub.php");
 include_once("$g4[path]/lib/latest.lib.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");
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<div align="center">
<table width="980" height="618" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td height="200" colspan="6"><font size="+6">홈페이지</font></td>
  </tr>
  <tr>
    <td width="160" height="20" bgcolor="#99CC00"><a href="http://choims.com/home.html">홈</a>      <div align="center"></div></td>
    <td width="160" height="20" bgcolor="#99CC00">프로필</td>
    <td width="160" height="20" bgcolor="#99CC00"><a href="http://choims.com/news.html">뉴스</a></td>
    <td width="160" height="20" bgcolor="#99CC00"><a href="http://choims.com/community.html">커뮤니티</a></td>
    <td width="160" height="20" bgcolor="#99CC00"><a href="http://choims.com/schedule.html">스케쥴</a></td>
    <td width="160" height="20" bgcolor="#99CC00"><a href="http://choims.com/live.html">라이브</a></td>
    </tr>
  <tr>
    <td width="220" height="42">
      <?
 $g4_path="./gnuboard4";
 include_once("./gnuboard4/common.php");
 include_once("./gnuboard4/head.sub.php");
 include_once("./gnuboard4/lib/outlogin.lib.php"); // outlogin()
 
echo outlogin("basic"); //
 ?>
    </td>
    <td height="30" colspan="5" bgcolor="#666699"><div align="center"><font size="+3">메인페이지</font></div></td>
  </tr>
  <tr>
    <td height="382" bgcolor="#33FF33">&nbsp;</td>
    <td width="802" height="1500" colspan="5"><?php echo latest("simple_mov", "Live", 3, 30); ?> </td>
  </tr>
    <td colspan="6" width="980" height="5"  bgcolor="#660000">카피라이터</td>
</table>
</div>
</body>
</html>

</body>
</html>
  • 복사

댓글 전체

우선

 $g4_path="./gnuboard4";
 include_once("./gnuboard4/common.php");
 include_once("./gnuboard4/head.sub.php");
 include_once("./gnuboard4/lib/outlogin.lib.php"); // outlogin()

이부분은 페이지 최상단으로 빼시고요

오류 메시지를 못봐서 말씀은 못드리겠지만
/skin/latest/simple_mov  폴더가 존재하는지 확인하시고
Live 테이블이 존재하는지 확인해 보시면 될꺼 같습니다.
답변 감사드립니다. 허나 $g4_path="./gnuboard4";
 include_once("./gnuboard4/common.php");
 include_once("./gnuboard4/head.sub.php");
 include_once("./gnuboard4/lib/outlogin.lib.php"); // outlogin() 이 부분 최상단으로 뺐습니다. 그리고 simple_mov나 Live 테이블 존재여부는 확실하구요 ㅠ ㅠ 그리고 문제는 어떤 스킨을 적용하던지 똑같은 현상이 나타나고 오류메시지 조차 나오지 않는다는 점이 의문입니다... 어찌해야 할까요 ㅠ ㅠ
그누보드를 정상적으로 설치했고 현재 이 페이지가
그누보드 설치 폴더 바로 아래에 있다는 가정하에 설명드립니다.

<?
 include_once("./_common.php"); <= 그누보드 기본 설정파일들을 가져옴
 include_once("$g4[path]/head.sub.php"); <= 그누보드 기본 설정부분
 include_once("$g4[path]/lib/latest.lib.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");
?>

============================ 여기는 =====================================
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
=====> DOCTYPE 설정 부분은 head.sub.php 파일에 설정 부분이 있으니 이부분에 넣어 주시고 삭제! ===========


========================== 여기부터 ======================================
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
======== 여기까지 head.sub.php파일에 설정 되어 있으므로 head.sub.php에서 환경에 맞게 수정 후 삭제! =============

 
<div align="center">
<table width="980" height="618" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td height="200" colspan="6"><font size="+6">홈페이지</font></td>
  </tr>
  <tr>
    <td width="160" height="20" bgcolor="#99CC00"><a href="http://choims.com/home.html">홈</a>      <div align="center"></div></td>
    <td width="160" height="20" bgcolor="#99CC00">프로필</td>
    <td width="160" height="20" bgcolor="#99CC00"><a href="http://choims.com/news.html">뉴스</a></td>
    <td width="160" height="20" bgcolor="#99CC00"><a href="http://choims.com/community.html">커뮤니티</a></td>
    <td width="160" height="20" bgcolor="#99CC00"><a href="http://choims.com/schedule.html">스케쥴</a></td>
    <td width="160" height="20" bgcolor="#99CC00"><a href="http://choims.com/live.html">라이브</a></td>
    </tr>
  <tr>
    <td width="220" height="42">
 
================여기부터 ==========================
<?
 $g4_path="./gnuboard4";
 include_once("./gnuboard4/common.php");
 include_once("./gnuboard4/head.sub.php");
 include_once("./gnuboard4/lib/outlogin.lib.php"); // outlogin()
=============== 여기까지 이미 상단에서 설정 되어 있으므로 삭제 ===================================
<? echo outlogin("basic"); ?>
    </td>
    <td height="30" colspan="5" bgcolor="#666699"><div align="center"><font size="+3">메인페이지</font></div></td>
  </tr>
  <tr>
    <td height="382" bgcolor="#33FF33">&nbsp;</td>
    <td width="802" height="1500" colspan="5"><?php echo latest("simple_mov", "Live", 3, 30); ?> </td>
  </tr>
    <td colspan="6" width="980" height="5"  bgcolor="#660000">카피라이터</td>
</table>
</div>
</body>
</html>

</body>
</html>
© SIRSOFT
현재 페이지 제일 처음으로