클럽 메인화면 최근글 선택하기 안돼요 정보
클럽 메인화면 최근글 선택하기 안돼요본문
g4 연동 nc club - 2.1.4 rc17 Release
- 클럽 메인화면 최근글 선택하게 하기
/club/cm_menuleve.php
/club/cm_menuleve.update.php
/club/cb_main.php
-위 3개 파일을 모두 통으로 업로드 했는데, 클럽에 들어가면 메뉴부분만 나오고 출력 부분(cb_main.php) 은 아무것도 안나와요.. 위 꺼 말고 다른 파일도 수정할 부분이 있나요??
- 클럽 메인화면 최근글 선택하게 하기
/club/cm_menuleve.php
/club/cm_menuleve.update.php
/club/cb_main.php
-위 3개 파일을 모두 통으로 업로드 했는데, 클럽에 들어가면 메뉴부분만 나오고 출력 부분(cb_main.php) 은 아무것도 안나와요.. 위 꺼 말고 다른 파일도 수정할 부분이 있나요??
추천
0
0
댓글 전체
어...3개 밖에 없는데요. ㅠ..ㅠ... 혹시 club.lib.php가 옛날거 아닌가요???
club.lib.php 최근꺼 맞아요...
cb_main.php만 업로드 하면 나오질 않아요.. 제가 쓰는 cb_main.php가 예전꺼라서 그런지...
예전꺼 커버스토리 쓰려고 이것 사용해요..
<?
include_once "./_common.php";
// 클럽 정보
$cb = get_club($cb_id);
// 클럽이 존재하지 않거나 $cb_id가 없을경우
if (!$cb[0]) {
error_msg("클럽이 존재하지 않습니다.");
}
$g4[title] = "$cb[cb_name] - $nc[nf_title]";
include_once "$g4[path]/head.sub.php";
include_once "./include/cb_style.inc.php";
?>
<script language='javascript' src='<?=$g4[path]?>/js/sideview.js'></script>
<link href=./club.css' rel='stylesheet' type='text/css'>
<?
// 커버스토리 출력
echo get_coverstory($cb_id);
?>
<!-- 공백 -->
<table width='100%'><tr><td height='5'></td></tr></table>
<!-- 검색 -->
<? /* include_once "./include/cb_main_search.inc.php"; */ ?>
<!-- 공백 -->
<table width='100%'><tr><td height='5'></td></tr></table>
<?
// 최신글 출력
if ($cb[cb_latest_use] == "Y") {
include_once "./include/cb_latest.inc.php";
}
echo "<br><br><br><br><br><br>";
include_once "$g4[path]/tail.sub.php";
?>
cb_main.php만 업로드 하면 나오질 않아요.. 제가 쓰는 cb_main.php가 예전꺼라서 그런지...
예전꺼 커버스토리 쓰려고 이것 사용해요..
<?
include_once "./_common.php";
// 클럽 정보
$cb = get_club($cb_id);
// 클럽이 존재하지 않거나 $cb_id가 없을경우
if (!$cb[0]) {
error_msg("클럽이 존재하지 않습니다.");
}
$g4[title] = "$cb[cb_name] - $nc[nf_title]";
include_once "$g4[path]/head.sub.php";
include_once "./include/cb_style.inc.php";
?>
<script language='javascript' src='<?=$g4[path]?>/js/sideview.js'></script>
<link href=./club.css' rel='stylesheet' type='text/css'>
<?
// 커버스토리 출력
echo get_coverstory($cb_id);
?>
<!-- 공백 -->
<table width='100%'><tr><td height='5'></td></tr></table>
<!-- 검색 -->
<? /* include_once "./include/cb_main_search.inc.php"; */ ?>
<!-- 공백 -->
<table width='100%'><tr><td height='5'></td></tr></table>
<?
// 최신글 출력
if ($cb[cb_latest_use] == "Y") {
include_once "./include/cb_latest.inc.php";
}
echo "<br><br><br><br><br><br>";
include_once "$g4[path]/tail.sub.php";
?>